var tid = setInterval(myCode, 5000);
function myCode() {
if($("#conversationContainer a.showmoreconversations").length){
$("#conversationContainer a.showmoreconversations").trigger('click');
}else{
abortTimer();
}
}
function abortTimer() {
clearInterval(tid);
}
我进行了二分搜索,但它没有运行。代码中的问题是什么? 没有错误,但是当我运行时没有任何错误。
答案 0 :(得分:0)
你没有在你的主电话中调用二进制搜索。