What's the effect of adding 'return false' to a click event listener?

前端 未结 16 1773
南旧
南旧 2020-11-21 22:59

Many times I\'ve seen links like these in HTML pages:

Click here !
16条回答
  •  逝去的感伤
    2020-11-21 23:15

    The return false prevents the page from being navigated and unwanted scrolling of a window to the top or bottom.

    onclick="return false"
    

提交回复
热议问题