编程语言
首页 > 编程语言> > javascript-使用滑脂猴子自动单击按钮

javascript-使用滑脂猴子自动单击按钮

作者:互联网

网页中有一个按钮为

<input class="button" type="submit" value="new">

我需要一个lublessmonkey脚本,即使在页面完全加载之前也必须自动单击该按钮并移至下一页.

谢谢.

解决方法:

I need a greasemonkey script which
even before the page completely loads
must automatically click on the button
and move to next page.

使用Greasemonkey,您当前只能在页面加载完成之前的DOM就绪状态下运行用户脚本.

借助在Google Chrome浏览器上使用的用户脚本,它们可以更快地运行,最终您将能够在DOM就绪之前运行用户脚本.

至于要选择的代码,然后单击该按钮:

document.evaluate("//input[@value='new' and @type='submit' and contains(@class, 'button')]", document, null, 9, null).singleNodeValue.click();

应该可以

标签:greasemonkey,javascript
来源: https://codeday.me/bug/20191106/1999421.html