奇怪的事情......本地這個自動滾動,但是一旦我將它上傳到我的服務器,它不會自動滾動。這些文件完全一樣。我甚至上傳了整個工作目錄,它不會自動旋轉。有任何想法嗎?jQuery不自動執行命令
$(document).ready(function() {
$('#viewport').carousel('#previous', '#next');
//The auto-scrolling function
function slide(){
$('#next').click();
}
//Launch the scroll every 2 seconds
var intervalId = window.setInterval(slide, 6000);
//On user click deactivate auto-scrolling
$('#previous, #next').click(
function(event){
if(event.originalEvent){
window.clearInterval(intervalId);
}
}
);
});
我使用的插件http://code.google.com/p/jquery-infinite-carousel/
您是否檢查了正確設置的腳本文件路徑 –
正確設置了路徑點擊#next和#以前觸發正確的動作,所以jQuery的工作,只是自動點擊似乎沒有執行的某種原因。 – Jason
也許你錯過了插件。你可以調試使用螢火蟲或鉻? –