<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>js阻止事件冒泡的DEMO</title> <script type="text/javascript"> //阻止冒泡的方法 function stopPP(e) { var evt = e || window.event; //IE用cancelBubble=true来阻止而FF下需要用stopPropagation方法 evt.stopPropagation ? evt.stopPropagation() : (evt.cancelBubble=true); } </script> </head> <body> <div style="margin: 150px 400px; 700px; height: 550px; background-color: #878788;" onclick="alert('最外层div上的onclick事件');"> <h2>最外层div上的onclick事件</h2> <div style="margin: 100px; 500px; height: 300px; background-color: #545444;" onclick="stopPP(arguments[0]);alert('中间层div上的onclick事件');"> <h3>中间层div上的onclick事件</h3> <div style="margin: 60px 100px; height: 100px; 300px; background-color: red;" onclick="stopPP(arguments[0]);alert('最内层div上的onclick事件');"> <h4>最内层div上的onclick事件”</h4> </div> </div> </div> </body> </html>
摘自: http://hxsdit.com/1246