當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Input Image src用法及代碼示例


輸入圖像的src屬性用於設置或返回輸入圖像的src屬性的值。 src屬性用於指定用作提交按鈕的圖像的URL。

用法:

  • 它返回src屬性。
    imageObject.src
  • 設置src屬性。
    imageObject.src

屬性值:它包含一個指定源圖像鏈接的單個值URL。下麵列出了兩種類型的URL鏈接:


  • Absolute URL:它指向另一個網頁。
  • Relative URL:它指向同一網頁上的其他文件。

返回值:它返回一個代表輸入圖像URL的字符串值。

示例1:本示例返回一個Input Image src屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image src Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>DOM Input Image src Property</h2> 
    <button onclick="my_geek()"> 
        <input id="myImage" 
               value="myGeeks"
               type="image"
               src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
               alt="Submit" 
               formaction="#" 
               formtarget="#" 
               formenctype="text/plain" 
               width="48"
               height="48"> 
    </button> 
    <h2 id="Geek_h" 
        style="color:green;">  
  
        </h2> 
    <script> 
        function my_geek() { 
  
            // Return formTarget, formEnctype and formAction.  
            var txt = document.getElementById( 
                "myImage").src; 
            document.getElementById( 
                "Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

示例2本示例設置Input Image src屬性。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image src Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>DOM Input Image src Property</h2> 
    <button onclick="my_geek()"> 
        <input id="myImage" 
               value="myGeeks"
               type="image"
               src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
               alt="Submit" 
               formaction="#" 
               a formtarget="#" 
               formenctype="text/plain" 
               width="48"
               height="48"> 
    </button> 
    <h2 id="Geek_h" style="color:green;">  
  
        </h2> 
    <script> 
        function my_geek() { 
  
            // Return formTarget, formEnctype and formAction.  
            var txt = document.getElementById( 
                "myImage").src = 
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"; 
            
            document.getElementById("Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Input Image src屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Image src Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。