<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>事件冒泡</title>
<script src="jquery-1.7.1.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(function () {
$(document).on("click","#p1",function(e){
console.log(e.target.tagName);
console.log("p1被点击了");
//e.stopPropagation(); //终止冒泡的方法
return false;
})
$("#aa").on("click","#td1",function(e){
console.log(e.target.tagName);
console.log("td1被点击了");
})
$("#aa").on("click","#tr1",function(e){
console.log(e.target.tagName);
console.log("tr1被点击了");
})
$("#aa").on("click","#table1",function(e){
console.log(e.target.tagName);
console.log("table1被点击了");
})
});
</script>
</head>
<body id="aa">
<table onclick="alert('这是table')">
<tr onclick="alert('这是tr')">
<td onclick="alert('这是td')">
<p onclick="alert('这是p')">段落</p>
</td>
</tr>
</table>
<table id="table1">
<tr id="tr1">
<td id="td1">
<p id="p1">你好</p>
</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>事件冒泡</title>
<script src="jquery-1.7.1.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(function () {
$("#aa").on("click","#p1",function(e){
console.log(e.target.tagName);
console.log("p1被点击了");
//e.stopPropagation(); //终止冒泡的方法
return false;
})
$("#aa").on("click","#td1",function(e){
console.log(e.target.tagName);
console.log("td1被点击了");
})
$("#aa").on("click","#tr1",function(e){
console.log(e.target.tagName);
console.log("tr1被点击了");
})
$("#aa").on("click","#table1",function(e){
console.log(e.target.tagName);
console.log("table1被点击了");
})
});
</script>
</head>
<body id="aa">
<table onclick="alert('这是table')">
<tr onclick="alert('这是tr')">
<td onclick="alert('这是td')">
<p onclick="alert('这是p')">段落</p>
</td>
</tr>
</table>
<table id="table1">
<tr id="tr1">
<td id="td1">
<p id="p1">你好</p>
</td>
</tr>
</table>
</body>
</html>
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有