无法让 jQuery 和 IE 成为朋友

发布于 2024-09-04 00:51:39 字数 388 浏览 4 评论 0原文

使用 jQuery 和 Cycle 插件。在 Safari、Chrome、Firefox 和最新版本的 Opera 中完美运行。无法在旧版本的 Opera 中运行,当然还有 IE。我知道它正在运行 Java,因为它会滚动。

这让我抓狂。希望它是简单的东西。这是代码...

$(document).ready(function() {
 $("#slideshow").css("overflow", "hidden");

 $("div#slides").cycle({
  fx: 'scrollHorz',
  speed:  'slow', 
  timeout: 0,
  prev: '#prev',
  next: '#next'
 }); 

非常感谢大家的帮助。

Using jQuery and the Cycle plugin. Runs flawless in Safari, Chrome, Firefox, and the latest version of Opera. Won't run in older versions of Opera, and of course, IE. I know its running Java, because its picking up the rollovers.

This is driving me batty. Hopefully its something simple. Here's the code...

$(document).ready(function() {
 $("#slideshow").css("overflow", "hidden");

 $("div#slides").cycle({
  fx: 'scrollHorz',
  speed:  'slow', 
  timeout: 0,
  prev: '#prev',
  next: '#next'
 }); 

Really appreciate the help guys.

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

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

发布评论

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

评论(1

洒一地阳光 2024-09-11 00:51:39

不确定您想要做什么,您确定这

$("#slideshow").css("overflow", "hidden");

就是您想要使用的吗?如果您想要隐藏某些内容,请执行以下操作:

$("#slideshow").css("display", "none");

或者更好:

 $("#slideshow").hide();

此外,您拥有的任何 ID 都应该是唯一的。因此,您实际上并不需要像 div#slides 这样的选择器。如果您有多个 ID 为 slides 的元素,那么您的 HTML 无效,并且可能会遇到更大的问题...

Not sure what you want to do, are you sure that

$("#slideshow").css("overflow", "hidden");

is what you want to use? If you want something to be hidden, do this:

$("#slideshow").css("display", "none");

or better yet:

 $("#slideshow").hide();

Also, any ID's you have should be unique. So you shouldn't really have much of a need for a selector like div#slides. If you have multiple elements with the ID of slides, you have invalid HTML and are going to probably run into bigger problems...

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