我想自动点击

时间:2013-01-02 03:18:11

标签: javascript

我想在网站上自动点击此链接。

<a href="/wall/withdraw.php?processor=ppp">Withdraw</a>

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以触发click()方法。

<a href="/wallet/withdraw.php?processor=ppp" id="foo">Withdraw</a>

document.getElementById("foo").click();

你需要一些方法来选择元素,我给它一个ID并使用getElementById()