PHP
·
发表于 5年以前
·
阅读量:8312
//Demo1 event.preventDefault()
$('a').click(function (e) {
// custom handling here
e.preventDefault();
});
//Demo2 return false
$('a').click(function () {
// custom handling here
return false;
};
jQuery中return false相当于同时调用e.preventDefault 和 e.stopPropagation。
要注意的是,在原生js中,return false仅仅相当于调用了e.preventDefault。