IE8:对象不支持此属性或方法
我知道我的问题是已知的,我只是想不出解决问题的方法。 然而,该代码可以在 chrome、ff 和 safari 中运行,但不能在 ie6-8 中运行。 我尝试调试代码并弹出以下内容: 行:272 错误:对象不支持此属性或方法
这是我的 js 文件中的第 272 行
$('#page1')[0].addEventListener('webkitAnimationEnd', self.webkitAnimationEnd, true);
您知道它出了什么问题吗?我正在使用 jquery ,它在我的.html 文件。
我感谢任何帮助或有用的提示。 先感谢您。
I know that my issue is known, I just can't figure out a way to fix the problem.
However the code works in chrome,ff and safari, but not in ie6-8.
I tried to debug the code and following popped up:
Line: 272
Error: Object doesn't support this property or method
This is line 272 from my js-file
$('#page1')[0].addEventListener('webkitAnimationEnd', self.webkitAnimationEnd, true);
Hav you got an idea what is wrong with it? I'm using jquery <script type="text/javascript" src="js/jquery-1.4.3.min.js">;</script>
which is called in my .html file.
I appreciate any help or useful hint.
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 mozilla 文档以获取问题描述和解决方案
See mozilla docs for problem description and solution
使用
attachEvent
对于 IE,这里是一个 SO 链接 Javascript 中的 MSIE 和 addEventListener 问题?您的代码可能看起来像
希望会有所帮助
use
attachEvent
for IE here is a SO link MSIE and addEventListener Problem in Javascript?your code may look like
hope that will help