event.preventDefault() not working in Mozilla or IE

前端 未结 5 2127
陌清茗
陌清茗 2021-01-23 04:31

I\'m finally at the point of testing my site in other browsers (built it mostly in Chrome). Unfortunately, a lot of stuff seems to function differently. I\'ll begin with the v

5条回答
  •  北恋
    北恋 (楼主)
    2021-01-23 05:08

    In addition to the ajax issues mentioned by others, IE8 doesn't do preventDefault().

    PreventDefault alternative for IE8

    (event.preventDefault) ? event.preventDefault() : event.returnValue = false; 
    

提交回复
热议问题