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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。