我想在网站上自动点击此链接。
<a href="/wall/withdraw.php?processor=ppp">Withdraw</a>
谢谢!
答案 0 :(得分:1)
您可以触发click()
方法。
<a href="/wallet/withdraw.php?processor=ppp" id="foo">Withdraw</a>
document.getElementById("foo").click();
你需要一些方法来选择元素,我给它一个ID并使用getElementById()