我正在使用以下代码在 onclick 和 onfocus 期间更改 HTML 元素的类型。
function ChangeToPassField() {
document.getElementById('password').type="password";
document.getElementById('password').focus();
}
<input type="text" name="password" id="password" onblur="ChangeToTextField(); if (this.value == '') {this.value = 'Password';}" onclick="ChangeToPassField(); if (this.value == 'Password') { this.value = ''; } else { this.value; }" onfocus="if (this.value == 'Password') { this.value=''; }; this.type='password';" value="Password" style="width:230px; height:25px; margin-left:5px; background:none; border:0px;" />
onclick 和 onfocus 事件在 IE7 和 IE8 中不起作用。它显示如下错误
“无法获取类型属性:不支持此命令”
我该如何解决这个问题?