为什么 IE 不能正确显示
http://jsfiddle.net/DalexL/NG6ty/
上面的链接显示了我正在使用的内容。我目前有一个热气球需要在页面上飞行。它在 Google Chrome 中运行良好,但在 IE 中甚至无法移动或执行任何操作。
我在这里做错了什么?
http://jsfiddle.net/DalexL/NG6ty/
The link above shows what I'm working with. I currently have a hot air balloon that needs to fly around the page. It works fine in Google Chrome but doesn't even move or anything inside of IE.
What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这一行中:
您应该删除逗号
IE 通常更能容忍草率的代码,但在这种情况下,即使额外的逗号在语法上不正确,其他浏览器也可以正常工作。删除它对于 IE7 效果很好。我猜IE9“原谅”了这种语法错误
In this line:
you should remove the comma
IE usually is more tolerant to sloppy code, but in this case was working fine for other browsers, even though the extra comma was syntactically incorrect. Removing it worked fine for IE7. I guess IE9 "forgives" this kind of syntax error