//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。
$('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。