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

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

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

Click here !
16条回答
  •  广开言路
    2020-11-21 23:27

    When using forms,we can use 'return false' to prevent submitting.

    function checkForm() {
        // return true to submit, return false to prevent submitting
    }
    
    ...

提交回复
热议问题