我正在编写一些需要click
为链接触发事件的JavaScript 代码。在 Internet Explorer 中,我可以这样做
var button = document.getElementById('myButton');
button.click();
但这在 Firefox 中不起作用,我假设任何其他浏览器。在 Firefox 中,我已经这样做了
var button = document.getElementById('myButton');
window.location = button.href;
我觉得这不是最好的方法。有没有更好的方法来触发click
事件?最好是无论元素类型或浏览器如何都可以工作的东西。