我刚刚开始学习Javascript,我想编写一个重定向到另一个URL的脚本,在加载URL后,点击一个" Next按钮等等。
我正在使用以下脚本,在第一个html页面中按下按钮后执行该脚本:
function GoToURLAndClickNext() {
var w = window.open("file:///C:/test_click.html");
w.document.getElementById('button id').click();
}
test_click.html 看起来像这样:
<!DOCTYPE html>
<html>
<body>
<h1>Test button</h1>
<p>Test </p>
<button type="button" id="button id" onclick="alert('click event occured')">Click here</button>
</body>
</html>
不幸的是,脚本不起作用...它正确打开&#34; test_click.html&#34;文档,但它不会自动点击&#34;按钮ID&#34;。 是否有可能实现这种行为?理想情况下,我想以树时尚的方式浏览多个html页面。 谢谢 ž