jQuery 脚本仅在 ie8/9 开发者工具下工作
我正在尝试调试无法在 IE 上运行的 jQuery(Tools) 脚本。可以在此处找到示例:
http://dl.dropbox.com/u/16799097 /www/demo/jQuery_Slider/index.html
它加载正确,第一个(滑动)事件发生,然后没有任何附加。
当我尝试通过使用开发人员工具重新加载页面(按 F12 键)来调试我的脚本时,一切都像魅力一样工作......如果我无法调试,我该怎么办?
任何帮助将不胜感激,我被困住了......
I am trying to debug my jQuery(Tools) script that is not working on IE. An example can be found here:
http://dl.dropbox.com/u/16799097/www/demo/jQuery_Slider/index.html
It loads correctly, the first (sliding) event occurs, and then nothing append.
When I try to debug my script by reloading the page with the developer-tools (press the F12 key), everything works like a charm ... What can I do if I cannot debug ?
Any help would be appreciated, I am stuck ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误是(在
slider.js
中):console
对象 仅在打开开发者工具时在 IE 中定义。然后,JavaScript 错误就不再存在,一切正常。要解决此问题,您可以删除/注释掉
console.log
调用,或者添加类似的内容作为您的第一个 JavaScript 块:(摘自 http://html5boilerplate.com/)
The error is (in
slider.js
):The
console
object is only defined in IE when you open the Developer Tools. Then, there's no longer a JavaScript error and everything works.To fix the problem, you can either remove/comment out the
console.log
call, or add something like this as your very first block of JavaScript:(snippet taken from http://html5boilerplate.com/)