onclick 和 onfocus 上的 HTML 元素类型更改在 IE 浏览器中不起作用
我正在使用下面的代码来更改 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 上不起作用。它显示类似
无法获取类型属性:不支持此命令”的
错误,我该如何解决这个问题?
i am using below codes for changing the type of HTML element during onclick and onfocus.
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;" />
the event onclick and onfocus not working IE7 and IE8.it displays the error like
"Could not get the type property: This command is not supported"
How can i Solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
type
属性无法在 Internet Explorer 中更改(参见“备注”部分)。您可以通过将input
元素替换为新元素来解决此问题。The
type
attribute cannot be changed in Internet Explorer (see the "Remarks" section). You could get around this by replacing theinput
element with a new one.