如何创建输入密码类型的输入,其中输入值以文本Password
写入,但当用户点击它并输入时应该是密码时间,即********
答案 0 :(得分:3)
您可以使用占位符属性
<input type='password' placeholder="password">
答案 1 :(得分:1)
如果你真的需要javascript,你可以像这样编码:
var p = document.createElement('input');
p.setAttribute('type','Password');
document.body.appendChild(p);