国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

阻止JavaScript事件冒泡傳遞(cancelBubble 、stopPropagation)

2019-11-21 02:06:05
字體:
來源:轉載
供稿:網(wǎng)友
cancelBubble在IE下有效
stopPropagation在Firefox下有效
復制代碼 代碼如下:

<!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" lang="gb2312"> 
<head> 
<title> 阻止JavaScript事件冒泡傳遞(cancelBubble 、stopPropagation)</title> 
<meta name="keywords" content="JavaScript,事件冒泡,cancelBubble,stopPropagation" /> 
<script type="text/javascript"> 
function doSomething (obj,evt) { 
 alert(obj.id); 
 var e=(evt)?evt:window.event; 
 if (window.event) { 
 e.cancelBubble=true; 
 } else { 
 //e.preventDefault(); 
 e.stopPropagation(); 
 } 

</script> 
</head> 
<body> 
<div id="parent1" onclick="alert(this.id)" style="width:250px;background-color:yellow"> 
 <p>This is parent1 div.</p> 
 <div id="child1" onclick="alert(this.id)" style="width:200px;background-color:orange"> 
 <p>This is child1.</p> 
 </div> 
 <p>This is parent1 div.</p> 
</div> 
<br /> 
<div id="parent2" onclick="alert(this.id)" style="width:250px;background-color:cyan;"> 
 <p>This is parent2 div.</p> 
 <div id="child2" onclick="doSomething(this,event);" style="width:200px;background-color:lightblue;"> 
 <p>This is child2. Will bubble.</p> 
 </div> 
 <p>This is parent2 div.</p> 
</div> 
</body> 
</html> 
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 永济市| 塔城市| 沧源| 绥化市| 汉川市| 招远市| 城口县| 林甸县| 山东| 吕梁市| 星子县| 右玉县| 阳朔县| 塘沽区| 肇庆市| 留坝县| 涞源县| 辽阳县| 裕民县| 缙云县| 澎湖县| 阳江市| 安福县| 和平区| 孟津县| 台南县| 通河县| 通海县| 泰宁县| 新乡县| 友谊县| 达尔| 沾化县| 郸城县| 盐池县| 祁阳县| 藁城市| 桓仁| 温泉县| 沙河市| 桓仁|