代码:
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
</head>
<body>
<a id="go" href="go">go</a>
<script>
$("#go").trigger("click");
</script>
</body>
</html>
此脚本在访问页面时不会打开链接go
。
1条答案
按热度按时间zlwx9yxi1#
.trigger("click")
将触发绑定事件,但不会触发直接单击。在您的情况下,它将工作: