你最後包括在這裏:
http://www.blissyfit.com/wp-content/themes/yamidoo_12/js/slider.js
此外包含的jQuery 1.3.2的文件中,所以它的覆蓋jQuery
對象和所有你的插件。
要得到一個沒有嵌入jQuery庫的版本:在jQuery Tools download page一定要取消選中頂部的jQuery選擇,因爲您已經在頁面中擁有它。
請注意,除此之外,在上述問題之前,您已經包含jQuery兩次,所以它實際上被加載了3次。 1.3.2正在這裏裝:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=3.0.1'></script>
然後1.4.2這裏正在加載::
<script type='text/javascript' src='http://www.blissyfit.com/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
因爲這破壞了jQuery用戶界面包括爲好,我會刪除這兩個腳本元素:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=3.0.1'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js?ver=3.0.1'></script>
目前,他們只是放慢頁面並被覆蓋。
謝謝。我注意到額外的jquery調用問題之上,但沒有意識到滑塊重置整個事情。通過該工具下載頁面鏈接修復。接下來會清理其他垃圾。感謝您的額外幫助! – rafi 2010-10-24 14:39:12
@rafi - 歡迎! – 2010-10-24 14:39:28