<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>事件</title>
<style type="text/css">
.q{
width:100px;
height:100px;
border:1px solid #ccc;
}
.w{
width:100px;
height:100px;
border:1px solid #ccc;
}
.e{
width:100px;
height:100px;
border:1px solid #ccc;
}
</style>
</head>
<body>
<script type="text/jscript">
function bs(x){
x.style.background="pink"
x.style.borderRadius="50px"
}
</script>
<div class="q" onclick="bs(this)"></div>
<br />
<br />
<br />
<div class="w" onmouseover="bs(this)"> </div>
</body>
</html>