事件冒泡
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件冒泡</title>
<style type="text/css">
.grandfather{
width: 300px;
height: 300px;
background-color: green;
position: relative;
}
.father{
width: 200px;
height: 200px;
background-color: gold;
}
.son{
width: 100px;
height: 100px;
background-color: red;
position: absolute;
left: 400px;
}
</style>
<script type="text/javascript" src="JS/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(function(){
$('.body').click(function () {
alert('4')
})
$('.grandfather').click(function () {
alert('3')
})
/*$('.father').click(function () {
alert('2')
})*/
$('.son').click(function (event) {
alert('1')
console.log(event);
alert('X軸坐標(biāo):' + event.clientx);
//阻止事件冒泡
event.stopPropagation();
return false;
})
$(document).contextmenu(function (event) {
//阻止默認(rèn)行為
event.preventDefault();
return false;
})
//阻止右鍵菜單
$(document).contextmenu(function(event){
// //阻止默認(rèn)行為(原來(lái)右鍵能彈出菜單厢塘,阻止后無(wú)法彈出)
// event.preventDefault();
//合并阻止
return false;
})
})
</script>
</head>
<body>
<div class="grandfather">
<div class="father">
<div class="son"></div>
</div>
</div>
</body>
</html>
彈框-阻止冒泡
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>彈框-阻止冒泡</title>
<style type="text/css">
.pop_con{
display: none;/*默認(rèn)不顯示茶没,用定時(shí)器顯示*/
}
.pop{
width: 400px;
height: 300px;
background-color: #fff;
border: 1px solid #000;
position: fixed;/*使用固定定位*/
left: 50%;/*左上角位于頁(yè)面中心*/
top: 50%;
margin-left: -200px;/*讓div向左偏移半個(gè)寬度、向上偏移半個(gè)高度晚碾,使div位于頁(yè)面中心*/
margin-top: -150px;
z-index: 9999;/*彈窗在最前面*/
}
/*遮罩樣式*/
.mask{
position: fixed;
width: 100%;
height: 100%;
background-color: #000;
left: 0;
top: 0;
/*設(shè)置透明度30%抓半,兼容IE6、7格嘁、8*/
opacity: 0.3;
filter: alpha(opacity=30);
z-index: 9990;/*遮罩在彈窗后面*/
}
</style>
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(function(){
$('#btn').click(function() {
$('#pop').show();
return false;
});
$('#shutoff').click(function() {
$('#pop').hide();
});
//點(diǎn)彈框以外的地方笛求,也能讓彈框消失
$(document).click(function(){
// setTimeout(function(){
// $('#pop').hide();
// },2000);
$('#pop').hide();
});
$('.pop').click(function() {
return false;
});
//阻止默認(rèn)行為(原來(lái)超鏈接可跳轉(zhuǎn)到百度,阻止后無(wú)法跳轉(zhuǎn))
$('#link1').click(function() {
return false;
});
})
</script>
</head>
<body>
<h1>首頁(yè)標(biāo)題</h1>
<p>頁(yè)面內(nèi)容</p>
<a id="link1">百度網(wǎng)</a>
<div class="pop_con" id="pop">
<div class="pop">
<h3>提示信息糕簿!</h3>
<a href="#" id="shutoff">關(guān)閉</a>
</div>
<!-- 遮罩層 -->
<div class="mask"></div>
</div>
</body>
</html>
事件委托答辯面試題
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件委托</title>
<style type="text/css">
.list{
list-style: none;
}
.list li{
height: 30px;
background-color: green;
margin-bottom: 10px;
color: #fff;
}
</style>
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(function(){
/*
給每個(gè)li綁定事件探入,一共綁定了8次,性能不高
$('.list li').click(function() {
alert($(this).html());
});
*/
/*
事件委托:方法delegate懂诗,只綁定一次事件蜂嗽,冒泡觸發(fā)
參數(shù):
selector選擇器:寫(xiě)入ul下面的所有要發(fā)生事件的元素,多個(gè)元素用空格隔開(kāi)殃恒,例如‘li a span’
eventType事件
function要執(zhí)行的操作
$('.list').delegate('li', 'click', function() {
//$(this)指發(fā)生事件的子集植旧,即每個(gè)li
alert($(this).html());
//全部取消委托
$('.list').undelegate();
});
})
</script>
</head>
<body>
<ul class="list">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
</ul>
</body>
</html>
節(jié)點(diǎn)操作
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>節(jié)點(diǎn)操作</title>
<style type="text/css">
</style>
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(function(){
var $span = $('<span>span元素</span>');
var $p = $('<p>p段落元素</p>');
var $h = $('<h1>頁(yè)面標(biāo)題</h1>');
/*插入子元素*/
//div中插入span和p(末尾追加)
// $('#div1').append($span);
// $('#div1').append($p);
// 把span和p插入div中
$span.appendTo('#div1');
$p.appendTo('#div1');
//把子元素插入到父元素(前面追加)
// $('#div1').prepend($span);
// $('#div1').prepend($p);
// $span.prependTo('#div1');
// $p.prependTo('#div1');
//在div前邊插入兄弟h1標(biāo)題
// $('#div1').before($h);
$h.insertBefore('#div1');
//在后邊插入兄弟元素
//after()
//insertAfter()
//刪除p標(biāo)簽
$p.remove();
})
</script>
</head>
<body>
<div id="div1"></div>
</body>
</html>