当我使用 Dean Edwards 时出现以下错误,我该如何处理? IE7.js 与 IE6?
我在 IE6 上使用 Dean Edwards 的 IE7.js
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js"
type="text/javascript"></script>
<![endif]-->
并收到 JavaScript 错误在 IE 6 上,当它读取以下行时:
c.runtimeStyle[h]=c.parentElement.currentStyle[h]
我该如何解决这个问题?
I'm using Dean Edwards' IE7.js for IE6
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js"
type="text/javascript"></script>
<![endif]-->
and getting a JavaScript error on IE 6 when it reads the line:
c.runtimeStyle[h]=c.parentElement.currentStyle[h]
How can I solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信 IE6 有parentElement 属性。您可以通过在
I don't believe IE6 has a parentElement property. You might be able to get around this by including this code in the
<!--[if lt ie7]>
tag: