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


HTML Select form用法及代碼示例


HTML DOM中的“選擇表單”屬性用於返回對包含下拉列表的表單的引用。成功時,此屬性返回一個表單對象,否則(下拉列表不在表單中)返回NULL。

用法:

selectObject.form

以下示例程序旨在說明HTML DOM中的“選擇表單”屬性:


例:本示例使用“選擇表單”屬性返回包含下拉列表的表單的ID。

<!DOCTYPE html> 
<html> 
      
<head>  
    <title> 
        HTML DOM Select form Property 
    </title>  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1>  
      
    <h2 style="font-family:Impact;"> 
        Select form Property 
    </h2> 
      
    <form id="Courses"> 
        Select your preferred course from the drop-down list:
        <select id="myCourses" autofocus> 
            <option value="C++">c++</option> 
            <option value="Placement">Placement</option> 
            <option value="Java">Java</option> 
            <option value="Python">Python</option> 
        </select> 
    </form> 
      
    <p> 
        To return the id of the form the dropdown list 
        belongs to, double-click the "Return ID" button. 
    </p> 
      
    <button ondblclick="myGeeks()"> 
        Return ID 
    </button> 
      
    <p id="GFG"></p> 
      
    <script> 
        function myGeeks() { 
        var d = document.getElementById("myCourses").form.id; 
        document.getElementById("GFG").innerHTML = d; 
        } 
    </script> 
</body> 
  
</html>                                                        

輸出:
單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Select表單屬性支持的瀏覽器:

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


相關用法


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