2011-11-24 98 views
0

我有一個在Firefox和Chrome中運行良好的jQuery滑塊。但它不適用於IE。這裏是我的代碼在IE中不工作的jQuery Slider

<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> 

任何幫助和建議將是非常可觀的。

+2

你有沒有在線的例子?將真正幫助調試! – DanC

+1

哪個版本的IE?這個問題是特定於某個特定版本還是針對IE6,7,8,9? – giftcv

+0

我正在使用IE8。 – NewUser

回答

2

Internet Explorer在定義對象文字時沒有尾隨逗號。我沒有測試過,因爲我沒有瀏覽器,但是你有沒有試過在opacity : 'toggle'之後刪除額外的逗號?

+0

是的,我嘗試過但沒有發生。沒有任何結果。 – NewUser