javascript setTimeout-在Chrome控制台中不起作用

时间:2018-06-26 10:46:55

标签: javascript google-chrome settimeout jconsole

我想单击网页上的所有对象。 在Google Chrome控制台中使用脚本。 但是我想在每次点击后稍等片刻。

以下脚本可以工作,但是一切立即发生,没有延迟。 如何编写脚本以使延迟起作用?

javascript:var inputs = document.getElementsByClassName('_54k8 _56bs _56bt');
 for(var i=0; i<inputs.length;i++) {
   setTimeout(  inputs[i].click() , 6000);
}
174
ErrorUtils caught an error: "Function.prototype.apply was called on undefined, which is a undefined and no...". Subsequent errors won't be logged; see https://fburl.com/debugjs.

screenshot

0 个答案:

没有答案