所以我希望将javascript循环到某个页面(不实际重新加载/清除控制台),然后执行
href="javascript:doSomething(9)"
然后通过执行函数循环
请帮助,谢谢!
答案 0 :(得分:1)
假设您希望重复此操作 - 您可以使用interval。
setInterval(function(){
doSomething(9);
},100); // the 100 is for 100 miliseconds
如果您希望重复而不必等待(即阻止代码),您可以使用normal while loop:
while(true){ // will loop forever since the condition is always "true"
doSomething(9);
}