Rumah > Artikel > hujung hadapan web > setInterval,setTimeout与jquery混用的问题_jquery
方法1. 直接在ready中调用其他方法,会提示缺少对象的错误,应用jQuery的扩展可以解决这个问题。
$.extend({
show:function(){
alert("ready");
}
});
setInterval("$.show()",3000);
});
方法2. 指定定时执行的函数时不要使用引号和括号。