我在jQuery的這個sniplet代碼無用的方法setTimeout(失蹤各地參數報價?)
$element.parent().children().last().hide().show('slide', {direction : 'left'}, 700, function() {
$element.delay(2000, function() {
$element.parent().children().last().hide('slide', {direction: 'left'}, 700);
reload_table(question_number);
//delay ends here
});
});
delay
聲明爲:
jQuery.fn.delay = function(time,func){
return this.each(function(){
setTimeout(func,time);
});
};
現在我得到的錯誤:
useless setTimeout call (missing quotes around argument?)
FF3.x,Firefox 6+可以。有關於此的任何想法?爲什麼會發生這種情況?
對不起,說,但沒有修復它 – kosta5
爲什麼這是公認的答案,如果這沒有解決它? –
這是一個謎... – Tebe