jQuery UI 幻灯片在 IE 中不起作用
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的问题,在我的例子中,它与调用对象
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.