事件
screen 屏幕 显示器左上角
page 页面 当前页面左上角
client 可视区域 显示页面的区域的左上角
offset 元素 元素的左上角
页面没有滚动条时, page和client基准点重合
function stopPropagation(e){
e.stopPropagation();//阻止事件冒泡
e.preventDefault()// 阻止默认行为 reset submit a[href]
return false;
}
$(".child").click(function(e){
return stopPropagation();
})
$(".parent").click(function(){
console.log(".parent")
})