我正在使用Dean Edwards' IE7.js用于IE6
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js"
type="text/javascript"></script>
<![endif]-->
在IE 6上读取行时出现JavaScript错误:
c.runtimeStyle[h]=c.parentElement.currentStyle[h]
我该如何解决这个问题?
答案 0 :(得分:0)
我不相信IE6有一个parentElement属性。您可以通过在<!--[if lt ie7]>
标记中包含此代码来解决此问题:
Element.prototype.parentElement = Element.prototype.parentNode;