The standard event triggering can use the dispatchEvent method. But now FF5 cannot trigger A's default behavior. As follows Copy code The code is as follows: < html> Firefox5 link A cannot simulate click bug Sina Mailbox <br>function dispatch(el, type){ <br>try{ <br>var evt = document.createEvent('Event'); <br> evt.initEvent(type,true,true); <br>el.dispatchEvent(evt); <br>}catch(e){alert(e)}; <br>} <br>var a1 = document.getElementById( 'a1'); <br>dispatch(a1, 'click'); <br>