为什么 jquery 在 IE9 中不起作用?

发布于 2024-11-19 02:31:44 字数 219 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ヅ她的身影、若隐若现 2024-11-26 02:31:44

在您的代码中,您有一个运行此 JavaScript 的条件块

Cufon.set('engine', 'canvas');

我的猜测是它尝试在页面加载(因此加载 Cufon 库)之前运行

尝试将其包装在文档就绪块中

<script>
    $(document).ready(function(){
        Cufon.set('engine', 'canvas');
    });
</script>

编辑:

刚刚看到所有其他 Cufon 都在包含 cufon-yui.js 文件之后运行,而这是之前的。

将其移至 这行

In your code, you have a conditional block which runs this javascript

Cufon.set('engine', 'canvas');

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

<script>
    $(document).ready(function(){
        Cufon.set('engine', 'canvas');
    });
</script>

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

红ご颜醉 2024-11-26 02:31:44

我测试了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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文