我正在運行Magento 1.5.1.0,並在我的測試服務器上運行的主頁上包含了一個jQuery圖像推子。它在Ie和Chrome中完美工作,但在Firefox中不起作用。有沒有人有這個問題 - jquery沒有在Firefox中使用Magento?
如果我啓用模板路徑提示,它將運行腳本確定關閉它,它不會運行。
我在firebug或firefox中沒有錯誤。
我在head.phtml
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/
1.3.2/jquery.min.js"></script>
<script type="text/javascript">
//<![CDATA[
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j('#s3slider').s3Slider({
timeOut: 4000
});
});
//]]>
</script>
這個代碼,我有這個在我page.xml文件的頂部:
<action method="addJs"><script>jquery-1.4.2.min.js</script></action>
<action method="addJs"><script>jquery.js</script></action>
<action method="addJs"><script>prototype/prototype.js</script></action>
我也清除高速緩存中的Magento和Firefox瀏覽器。
有沒有人有任何想法?
非常感謝提前。
您正在加載jQuery(1.3.2,1.4.2和三個未知版本)的三個版本。首先加載一個jQuery。 –
你還在加載s3Slider插件嗎? – voigtan
謝謝你只用一個! – Ledgemonkey