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


HTML Input Image name用法及代码示例


HTML DOM输入图像名称属性用于设置或返回输入图像的名称属性的值。提交表单后,名称Attribute用于引用form-data或在JavaScript中引用元素。

用法:

  • 要返回名称属性:
    imageObject.name
  • 设置名称属性:
    imageObject.name

属性值:接受单个参数名称,并指定输入图像的名称。


返回值:它返回一个代表输入图像名称的字符串值。

范例1:该程序说明了如何返回名称Property。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image name Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
      GeeksforGeeks  
    </h1> 
  
    <h4> 
      DOM Input Image name Property 
    </h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" name="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").name; 
            document.getElementById("Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

示例2:此示例说明了如何设置名称Property。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image name Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
      GeeksforGeeks  
    </h1> 
  
    <h4> 
      DOM Input Image name Property 
    </h4> 
    <button onclick="my_geek()"> 
        <input id="myImage" name="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").name =  
                "The value of the name attribute was changed to " 
                                                  + "Hello Geeks"; 
            document.getElementById("Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:HTML | Java支持的浏览器。 DOM输入图像名称属性在下面列出:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Image name Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。