如何以编程方式单击带有javascript的链接?

2022-08-30 01:28:36

有没有办法使用JavaScript点击我页面上的链接?


答案 1
document.getElementById('yourLinkID').click();

答案 2

如果您只想更改当前页面地址,只需在Javascript中执行此操作即可:

location.href = "http://www.example.com/test";