我正在尝试使用jQuery欺骗我的浏览器以为我点击了锚点。因此,当加载它应该点击锚点(在下面的示例中,将重定向到google.com)
<a class="GoogleAnchor" href="google.com">Click Me</a>
<script>
function simulateClick() {
var a = $(".GoogleAnchor")[0];
var e = document.createEvent("MouseEvents");
e.initEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
a.dispatchEvent(e);
}
simulateClick();
</script>
到目前为止没有任何事情发生哈哈。