0

我尝试在网页上编写自动点击功能:

var button = document.getElementById('send_order_btnSendOrder');
setInterval(function(){button.click()}, 200)

它工作正常,现在每次自动点击后我希望这些值将位于文件中。

document.getElementById('send_order_txtPrice').value = "24030";
document.getElementById('send_order_txtCount').value = "5";

我的意思是在反复高压灭菌后设置值。我应该如何更改我的代码?

4

1 回答 1

0
var button = document.getElementById('send_order_btnSendOrder').addEventListener('click', function())


接着removeEventListener('click', function())

于 2020-04-17T12:15:33.187 回答