基本 JavaScript 会导致 IE9 崩溃/挂起,但 FF、Ch 或 Op 不会崩溃/挂起 - “未实现”
我收到以下错误:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 IE 中,您不能像这样分配 DOM 节点的“style”属性。您可以采取几种替代方案:
或
In IE you can't assign the "style" attribute of a DOM node like that. You can do a couple of alternatives:
or
做:
或者
Do:
or