当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。