click() (javascript) method is not working in FF

前端 未结 3 1630
不知归路
不知归路 2021-01-26 11:02

The following code is throwing two alerts as expected in IE but not in Firefox. Please help.



        
3条回答
  •  说谎
    说谎 (楼主)
    2021-01-26 11:50

    There's no click method on elements. Are you using any library?

    Usually you have to do something like element.fireEvent('click') (prototype, mootools)

    or element.click() (jquery)

    UPDATE- Similar question: How do I programmatically click on an element in JavaScript?

    Looks like an ugly and brittle solution, if I were you I'd just include jQuery and let that handle all the browser quirks.

提交回复
热议问题