带有 IF 和 ELSE 语句的 jQuery 循环
我有以下代码:
$(document).ready(function()
{
if (!jQuery.browser.msie)
{
$('.banner').cycle({
fx: 'fade',
speed: 1000,
timeout: 10000,
random: 1
});
}
else {
$('.banner').cycle({
fx: 'turnUp',
speed: 1000,
timeout: 10000,
random: 1
});
}
});
但是 .banner 不会在 IE 中循环。如果我将 Fx 更改为淡入淡出,它会起作用吗?任何想法为什么我不能有不同的效果,IF 和 ELSE 确实可以工作,只是当我对 IE 产生不同的效果时似乎会中断。
谢谢,
I have the following code:
$(document).ready(function()
{
if (!jQuery.browser.msie)
{
$('.banner').cycle({
fx: 'fade',
speed: 1000,
timeout: 10000,
random: 1
});
}
else {
$('.banner').cycle({
fx: 'turnUp',
speed: 1000,
timeout: 10000,
random: 1
});
}
});
However the .banner does not cycle in IE. If I change the Fx to fade though it will work?? Any ideas why I can't have a different effect, the IF and ELSE is defo working, just seems to break when I have a different effect on the IE one.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
久光2024-09-11 17:58:29
插件版本可能是罪魁祸首,请升级插件版本以解决问题。另外,您可以使用条件语句来简化它,如下所示:
$(function() {
$('.banner').cycle({
fx: $.support.opacity ? 'fade' : 'turnUp',
speed: 1000,
timeout: 10000,
random: 1
});
});
这使用 jQuery.support
使用 功能检测而不是检查不透明度支持浏览器检测(例如 IE9 确实支持不透明度)...如果可能的话,这是最好的方法。
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
事实证明我没有使用最新版本的 Cycle。不知道为什么这会影响 IF 和 ELSE 语句:/
Turns out I wasn't using the latest version of Cycle. Not sure why this would effect the IF and ELSE statement though :/