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


HTML Input Image type用法及代碼示例


HTML DOM中的輸入圖像類型屬性​​用於返回圖像字段是哪種類型的表單元素。

用法:

ImageObject.type 

返回值:它返回一個字符串值,該字符串值表示Image字段是表單元素的類型。


下麵的示例返回“圖像類型”屬性。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image type Property 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>DOM Input Image Type 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, 
          //ormEnctype and formAction.  
            var txt = document.getElementById( 
                "myImage").type; 
            document.getElementById( 
                "Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:
在單擊按鈕之前:

單擊按鈕後:

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

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


相關用法


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