无法让 jQuery 和 IE 成为朋友
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您想要做什么,您确定这
就是您想要使用的吗?如果您想要隐藏某些内容,请执行以下操作:
或者更好:
此外,您拥有的任何 ID 都应该是唯一的。因此,您实际上并不需要像
div#slides
这样的选择器。如果您有多个 ID 为slides
的元素,那么您的 HTML 无效,并且可能会遇到更大的问题...Not sure what you want to do, are you sure that
is what you want to use? If you want something to be hidden, do this:
or better yet:
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 ofslides
, you have invalid HTML and are going to probably run into bigger problems...