0
我在local.xml中有以下內容。jQuery Magento的加載順序
<reference name="head">
<block type="core/text" name="google.cdn.jquery">
<action method="setText">
<text><![CDATA[<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><script type="text/javascript">jQuery.noConflict();</script>]]>
</text>
</action>
</block>
<action method="addJs"><script>smartwave/jquery/jquery-migrate-1.0.0.js</script></action>
<action method="addJs"><script>smartwave/jquery/jquery-noconflict.js</script></action>
我需要從穀倉存儲庫的jQuery加載第一。但是當頁面加載時,還有很多其他的jQuery依賴腳本加載,一旦我刪除了它們依賴的庫的舊版本,就會中斷它們。
Angular腳本很好,我理解,但它的東西,如圖像滑塊等,我需要谷歌jQuery加載第一。我也把它放在head.phtml上,作爲我的主題以及相同的結果。
關於如何在加載之前加載它的任何提示?
但是使用這個將承擔我還添加了PARAMS到所有其它JS調用? –