在我的站点中,密码字段显示输入的值,而不是显示星号符号。这适用于所有其他浏览器。IE7 和 IE9 也可以。仅在 IE8 中我没有得到它。任何帮助将不胜感激。
参考:只需检查该站点并单击登录,将出现登录框,您可以检查该密码字段的问题。
<input type="password" name="password" id="password" value="Password"
onblur="if(this.value == '') { this.style.color='#bbb'; this.value='Password'; this.type='text'}
else {this.type='password';}"
onfocus="if (this.value == 'Password') {this.style.color='#000'; this.value=''; this.type='password'} else {this.type='password';}" style="color: rgb(0, 0, 0);">