关于setTimeout内存溢出的问题. 我的代码是大概是这样: var settimeout_id=null; //定時器刪除. var urls="system/ajax_book.php"; function a() { $.ajax({ type:"get", url:urls,//全局变量,请求的页面返回数据是:2-3KB ifModified:true, //false也試過不行 cache: true, //false也試過. dataType:"json", error:function(){alert("Please refresh the page or restart the browser")}, success:function(table_date){b(table_date);} }); }
function b(str) { $("#page_scroll").empty(); //清空原來获取的数据.page_scroll是一个<ul> if(str!=null && str.length>0) { var table_str="";