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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。