<html>
<head>
<title>
typeof Example
</title>
<script type="text/javascript" src="//apps.bdimg.com/libs/jquery/1.11.3/jquery.min.js"></script>
<style>
#father{width:100px;height:100px;background:red}
#children{width:50px;height:50px;background:yellow}
</style>
<div id="father" class="ss1">s1
<div id="children" class="ss2">s2</div>
</div>
<script type="text/javascript">
$('#father').on('click',function (e) {
alert('我是father')
});
$('#children').on('click',function (e) {
alert('我是children')
e.stopPropagation();
})
</script>
</head>
<body>
</body>
</html>