为什么 jquery 在 IE9 中不起作用?
http://www.brainbuzzmedia.com/themes/class/wordpress/
上的所有内容这个项目已经完成,除了让它在 IE9 中工作之外,我不知道是什么导致 jquery 中断。
有什么想法吗?
http://www.brainbuzzmedia.com/themes/class/wordpress/
Everything on this project is done except getting it to work in IE9 and I can't figure out what is causing jquery to break.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的代码中,您有一个运行此 JavaScript 的条件块
我的猜测是它尝试在页面加载(因此加载 Cufon 库)之前运行
尝试将其包装在文档就绪块中
编辑:
刚刚看到所有其他 Cufon 都在包含 cufon-yui.js 文件之后运行,而这是之前的。
将其移至
这行
In your code, you have a conditional block which runs this javascript
My guess is that it's trying to run before the page has loaded (and therefore the Cufon library)
Try wrapping it in a document ready block
Edit:
Just saw that all the other Cufon is running AFTER the cufon-yui.js file is inlcuded, whereas this is before.
Move it after
<script src="http://www.brainbuzzmedia.com/themes/class/wordpress/wp-content/themes/class/js/cufon-yui.js" type="text/javascript"></script>
this line我测试了IE。 jQuery 可用,当然,标题的滑块也能工作。看来你的IE有问题。
I tested the IE. jQuery is available and of course, the slider of the header worked. Seems that your IE has problems.