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


HTML Input Image form用法及代碼示例


HTML DOM輸入圖像表單屬性用於將引用返回到包含輸入圖像字段的表單。這是一個隻讀屬性,成功時將返回一個表單對象。

用法:

imageObject.form.id

下麵的示例說明如何返回Form屬性。
例:


<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Input Image form 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
      GeeksforGeeks  
    </h1> 
  
    <h4> 
      DOM Input Image form Property 
    </h4> 
    <button onclick="my_geek()"> 
        <form id="myGeeks"> 
            <input id="myImage" type="image" formAction="test.php"
                   src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
                   alt="Submit" width="48" height="48" formMethod="post" 
                   formNoValidate> 
  
        </form> 
    </button> 
    <h2 id="Geek_h" style="color:green;"></h2> 
    <script> 
        function my_geek() { 
  
            // Return target, alt and height.  
            var txt = document.getElementById( 
                "myImage").form.id; 
            document.getElementById( 
                "Geek_h").innerHTML = txt; 
        } 
    </script> 
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了HTML DOM輸入圖像表單屬性支持的瀏覽器:

  • Googl Chrome 10.0
  • Firefox 4.0
  • Opera 11.0
  • Safari 5.1


相關用法


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