我正在玩一些新的 javascript 函数来尝试自动单击网页上的按钮。
但是,按钮的单击事件不会自动触发。我用谷歌搜索了一些代码,它似乎是正确的。
我使用的是 IE 浏览器 10
<html>
<head>
<script type = "text/javascript">
function haha1()
{
alert('haha1');
}
</script>
<script>
document.getElementById('haha').click();
</script>
</head>
<body>
<input type = "button" id = "haha" onClick = "haha1()" value = "lol"/>
</body>
</html>