最新的Web开发教程
 

Input Password placeholder Property

<输入密码对象

更改密码字段的占位符文本:

document.getElementById("myPassword").placeholder = "Type your password";
试一试»

定义和用法

占位符属性设置或返回的值placeholder的密码字段的属性。

placeholder属性指定描述密码字段的预期值(例如,样本值或预期的格式的简短描述)短提示。

用户输入值之前,短提示显示在密码字段。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

占位符属性在所有主流浏览器的支持。

注:在Internet Explorer 9及更早版本不支持占位符属性。


句法

返回占位符属性:

passwordObject .placeholder

设置占位符属性:

passwordObject .placeholder= text

属性值

描述
text 指定短提示(one word or a short phrase)描述密码字段的预期值

技术细节

返回值: 一个String,表示短暗示,描述了密码字段的预期值

更多示例

获取密码字段的占位符文本:

var x = document.getElementById("myPassword").placeholder;

x的结果将是:

Your password
试一试»

相关页面

HTML参考: HTML <input> placeholder属性


<输入密码对象