我正在尝试在页面加载时调用我的类,以及重新加载X秒的结果,但是在setTimeout教程之后,jquery似乎给我一个错误,我不明白它是无语法。< / p>
未捕获RangeError:超出最大调用堆栈大小
var rand = function() {
return Math.random().toString(36).substr(2);
};
lhc();
function lhc(){
$('#lhcb a').each(function() {
var rawlink = $(this).attr("href");
var link = encodeURIComponent( rawlink );
var token = rand();
var href = $(this).prop('href');
var proceed = $.getJSON( "lhc/link.php?link=" + link + "&a=c", function( data ) {
if ( data.proceed == 'true' ) {
return true;
} else {
return false;
}
}).error(function(e) { alert("error"); console.log(e);});
if ( href.match("^javascript:") ) {
proceed = false;
}
if ( rawlink.charAt(0) != '#' ) {
if ( proceed ) {
$(this).after( " <span style='font-size:xx-small;'>( Hits: <span id='" + token + "'></span> )</span>" );
$.getJSON( "lhc/link.php?link=" + link + "&a=q", function( data ) {
$('#' + token).html(data['hits']);
}).error(function(e) { alert("error"); console.log(e);});
$(this).attr( "href", "lhc/link.php?link=" + link + "&a=g" );
}
}
});
setTimeout(lhc(), 5000);
}
答案 0 :(得分:26)
更改
setTimeout(lhc(), 5000);
到
setTimeout(lhc, 5000);
当您添加括号时,您将直接调用该函数而不会超时,并且在同一函数内立即调用该函数会很快成为填充堆栈的无限循环
答案 1 :(得分:0)
如果正在运行,您可以忽略错误
<script>window.onerror = function(){ return true;} </script>
并设置setTimeout(lhc, 5000);
一些。