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


HTML DOM Input Password用法及代码示例


HTML DOM中的输入密码对象用于表示type =“ password”的HTML输入元素。可以使用getElementById()方法访问类型=“ password”的输入元素。

用法:

  • 用于访问输入类型=“密码”
    document.getElementById("id");
  • 它用于创建type =“ password”元素。
    document.createElement("input");

对象属性:

属性 描述
type 此属性用于返回密码字段属于哪种类型的表单元素。
value 此属性用于设置或返回密码字段的value属性的值。
autocomplete 此属性用于设置或返回密码字段的自动完成属性的值。
autofocus 此属性用于设置或返回在页面加载时密码字段是否应自动获得焦点。
defaultValue 此属性用于设置或返回密码字段的默认值。
disabled 此属性用于设置或返回是否禁用密码字段。
form 此属性用于返回对包含密码字段的表单的引用。
maxLength 此属性用于设置或返回密码字段的maxlength属性值。
name 此属性用于设置或返回密码字段的name属性的值。
placeholder 此属性用于设置或返回密码字段的占位符属性的值。
readOnly 此属性用于设置或返回密码字段是否为只读。
required 此属性用于设置或返回在提交表单之前是否必须填写密码字段。
size 此属性用于设置或返回密码字段的value属性的值。

输入数字对象方法:

  • select():这用于选择密码字段的内容。

示例1:



<!DOCTYPE html> 
<html> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">   
            GeeksForGeeks   
        </h1> 
  
    <h2>DOM Input Password Object</h2> Password:
    <input type="password"
           id="myPsw" 
           value="geeks12"> 
  
    <p>Click the button to get the password  
      of the password field.</p> 
  
    <button onclick="myFunction()"> 
      Click Here! 
   </button> 
  
    <p id="demo"></p> 
  
    <script> 
        function myFunction() { 
            var x =  
            document.getElementById( 
              "myPsw").value; 
            
            document.getElementById( 
              "demo").innerHTML = x; 
        } 
    </script> 
  
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

示例-2:

<!DOCTYPE html> 
<html> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">   
            GeeksForGeeks   
        </h1> 
  
    <h2>DOM Input Password Object</h2> 
  
    <p>Click the button to create a 
      Password Field.</p> 
  
    <button onclick="myFunction()"> 
      Click Here! 
    </button> 
  
    <script> 
        function myFunction() { 
            
            // Creating input element. 
            var x = document.createElement("INPUT"); 
              
            // Set type password. 
            x.setAttribute("type", "password"); 
            x.setAttribute("value", "geeks12"); 
            document.body.appendChild(x); 
        } 
    </script> 
  
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 谷歌浏览器
  • 火狐浏览器
  • Edge
  • Safari
  • Opera

相关用法


注:本文由纯净天空筛选整理自divyatagoel0709大神的英文原创作品 HTML | DOM Input Password Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。