onclick 和 onfocus 上的 HTML 元素类型更改在 IE 浏览器中不起作用

发布于 2024-11-27 17:47:56 字数 772 浏览 0 评论 0原文

我正在使用下面的代码来更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尸血腥色 2024-12-04 17:47:56

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

The type attribute cannot be changed in Internet Explorer (see the "Remarks" section). You could get around this by replacing the input element with a new one.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文