1

我有一些密码字段登录:

 <input type="password" name="password" id="password" value="Password" maxlength="40" required style="width: 130px; font-size: 10px;" />

作为输出,我有一个值为“密码”的密码字段,它显示得就像 "********",什么是
清楚的。但我想将其视为文本“密码”,然后在 show 中输入********。怎么做??

4

2 回答 2

6

使用placeholder属性。

<input type="password" placeholder="Password" />

js小提琴

于 2013-08-21T07:38:56.640 回答
0

这应该有效:

<input type="password" name="password" value="password" id="password"  placeholder="Password" maxlength="40" required="" style="width: 130px; font-size: 10px;">

需要注意的是,如果 value 属性在 placeholder 属性之前,它将优先,您将看到默认值设置。(对于密码字段,对我来说没有多大意义)。

于 2013-08-21T07:46:37.777 回答