当我使用Dean Edwards的IE7.js与IE6时,我如何处理以下错误?

时间:2009-11-21 04:29:31

标签: javascript internet-explorer internet-explorer-6 ie7.js

我正在使用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]

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我不相信IE6有一个parentElement属性。您可以通过在<!--[if lt ie7]>标记中包含此代码来解决此问题:

Element.prototype.parentElement = Element.prototype.parentNode;