1

我正在使用以下代码在 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 中不起作用。它显示如下错误

“无法获取类型属性:不支持此命令”

我该如何解决这个问题?

4

1 回答 1

2

无法在 Internet Explorer 中更改type属性(请参阅“备注”部分)。您可以通过用新元素替换元素来解决此问题。input

于 2011-08-02T10:27:08.180 回答