使用greasemonkey自动单击一个按钮

时间:2010-06-15 17:56:38

标签: javascript greasemonkey

网页上有一个按钮

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

我需要一个greasemonkey脚本,甚至在页面完全加载之前必须自动点击按钮并转到下一页。

感谢。

1 个答案:

答案 0 :(得分:4)

  

我需要一个paintmonkey脚本   甚至在页面完全加载之前   必须自动点击按钮   并转到下一页。

使用Greasemonkey,您当前只能在DOM就绪时运行用户脚本,就在页面加载完成之前。

使用Google Chrome上的用户脚本,他们可以更快地运行,最终您可以在DOM准备好之前运行用户脚本。

至于选择并单击该按钮的代码:

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

应该做的伎俩