使用jquery方式的话,以下是等效的
return false === event.stopPropagation + event.preventDefault()
//1. event.preventDefault()
$('a').click(function (e) {
// custom handling here
e.preventDefault();
});
//2. return false
$('a').click(function () {
// custom handling here
return false;
});
非jquery的情况,例如<a href="demo.html" onclick="return false;">
其作用只是阻止默认事件行为,不能停止事件冒泡
https://*.com/questions/1357118/event-preventdefault-vs-return-false