jQuery Slider无法在IE中运行

时间:2011-11-24 08:48:45

标签: javascript jquery html css slider

我有一个jquery滑块,在Firefox和Chrome中运行良好。但它没有在IE上工作。这是我的代码

 <script type="application/x-javascript">
<!--
  jQuery(function(){
    jQuery("#featured > ul").tabs({fx: {opacity: 'toggle',}}).tabs("rotate", 5000, true);
    jQuery("#contactus, #quote").fancybox({
    'width'           : '75%',
    'height'          : '100%',
    'autoScale'       : false,
    'transitionIn'    : 'none',
    'transitionOut'   : 'none',
    'type'            : 'iframe'
    });
  });
//-->
</script>

任何帮助和建议都会非常明显。

1 个答案:

答案 0 :(得分:2)

在定义对象文字时,Internet Explorer没有尾随逗号。我没有测试过,因为我这里没有浏览器,但您是否尝试在opacity : 'toggle'之后删除额外的逗号?