<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件捕获和事件冒泡</title>
</head>
<body>
<div id="container" style="width:300px;height:300px; border: 1px solid red;">
<input type="button" id="cancel" value="cancel"/>
<input type="button" id="send" value="send"/>
</div>
<script type="text/javascript">
var container=document.getElementById("container");
container.onclick=function(){
alert("container");
}
var cancel=document.getElementById("cancel");
cancel.onclick=function(){
alert("cancel");
}
var send=document.getElementById("send");
send.onclick=function(){
alert("send");
}
</script>
</body>
</html>