基本 JavaScript 会导致 IE9 崩溃/挂起,但 FF、Ch 或 Op 不会崩溃/挂起 - “未实现”

发布于 2024-11-26 18:40:59 字数 262 浏览 1 评论 0原文

我收到以下错误:

SCRIPT16385:未实现

在以下代码行上:

document.getElementById("amtcase").style = "background-color: #FFFFFF;";

“amtcase”是一个文本字段

这仅发生在 IE9 上,在 Opera、Chrome 和 FireFox 上测试良好。

I get the following error:

SCRIPT16385: Not implemented

On the following line of code:

document.getElementById("amtcase").style = "background-color: #FFFFFF;";

"amtcase" is a text field

This only occurs on IE9, tested fine with Opera, Chrome, and FireFox.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

避讳 2024-12-03 18:40:59

在 IE 中,您不能像这样分配 DOM 节点的“style”属性。您可以采取几种替代方案:

document.getElementById('amtcase').style.backgroundColor = '#FFFFFF';

document.getElementById('amtcase').style.cssText = 'background-color: #FFFFFF';

In IE you can't assign the "style" attribute of a DOM node like that. You can do a couple of alternatives:

document.getElementById('amtcase').style.backgroundColor = '#FFFFFF';

or

document.getElementById('amtcase').style.cssText = 'background-color: #FFFFFF';
寄风 2024-12-03 18:40:59

做:

document.getElementById("amtcase").style["backgroundColor"] = "#FFFFFF";

或者

document.getElementById("amtcase").style.backgroundColor = "#FFFFFF";

Do:

document.getElementById("amtcase").style["backgroundColor"] = "#FFFFFF";

or

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