您好我對JavaScript和jQuery相對較新,並試圖創建一個函數的間隔100毫秒的運行時,我遇到了一個問題。我似乎進入控制檯的螢火蟲和錯誤的女巫說clasing()不是defined.This是我的代碼:jQuery setInterval()未定義函數錯誤
$(document).ready(function() {
var prev = $("img.selected").prev();
var curent = $("img.selected");
var next = $("img.selected").next().length ? $("img.selected").next() : $("img:first");
$("img").not(":first").css("display","none");
function clasing() {
curent.removeClass("selected");
next.addClass("selected");
}
setInterval("clasing()",100);
});
我在做什麼錯在這裏謝謝
可能重複:http://stackoverflow.com/questions/2162267/setinterval-and-window-onload-problem – jbabey 2012-03-20 20:00:06