最奇怪的是......在本地自动滚动,但是一旦我将它上传到我的服务器,它就不会自动滚动。文件完全相同。我什至上传了整个工作目录,它不会自动旋转。有任何想法吗?
$(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);
}
}
);
});