日期:2014-05-16 浏览次数:20389 次
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
#lv0{
}
#lv1{
width:200px;
height:200px;
background-color:red;
}
#lv2{
width:100px;
height:100px;
background-color:blue;
}
</style>
</head>
<body id='lv0'>
<div id='lv1'>this is a test
<div id='lv2'>lv2</div>
</div>
<script>
function $(id){
return document.getElementById(id);
}
$('lv0').onclick = function(e){
}
$('lv1').onclick = function(e){
}
$('lv2').onclick = function(e){
e.preventDefault();
e.stopPropagation();
}
</script>
</body>
</html>