我正在编写一些JavaScript代码,需要触发该click事件的链接。在Internet Explorer中,我可以执行此操作
var button = document.getElementById('myButton');
button.click();
但这在Firefox中不起作用,我假设使用其他浏览器。在Firefox中,我已完成此操作
var button = document.getElementById('myButton');
window.location = button.href;
我觉得这不是最好的方法。有没有更好的方法来触发click事件?最好不管某些元素或浏览器的类型都能工作。
繁华开满天机
有只小跳蛙
相关分类