jQuery UI 幻灯片在 IE 中不起作用

发布于 2025-01-06 18:18:07 字数 217 浏览 0 评论 0原文

我有一个 jQuery 脚本,用于在单击链接时将元素页面向左滑动。它适用于除 IE 之外的所有著名浏览器。我该如何解决这个问题?

这是脚本:

$("a.openHome").click(function(){
    $(".halamanContact").hide('slide', {direction: 'left'},'slow');
});

I have a jQuery script for sliding an element page to left when the link is clicked. It works for every famous browser except IE. How can I fix this?

Here is the script:

$("a.openHome").click(function(){
    $(".halamanContact").hide('slide', {direction: 'left'},'slow');
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无所的.畏惧 2025-01-13 18:18:08

我遇到了类似的问题,在我的例子中,它与调用对象 console 上的方法的 jQuery UI 1.8 脚本有关。
从文件中删除字符串 this.debug&&console.log.apply("",arguments) 解决了我的问题。

I had a similar problem and in my case it was related to jQuery UI 1.8 script calling a method on the object console.
Removing the string this.debug&&console.log.apply("",arguments) from the file fixed my problem.

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