1.阻止浏览器默认行为
event.preventDefault();
2.阻止事件冒泡
event.stopPropagation();
3.既阻止浏览器行为,又阻止事件冒泡
return false;