代码编辑器:
x
1
<div onmouseover="mOver(this)" onmouseout="mOut(this)" style="background-color:#D94A38;width:120px;height:20px;padding:40px;color:#fff">Mouse Over Me</div>
2
<script>
3
function mOver(obj){
4
obj.innerHTML="Thank You"
5
}
6
function mOut(obj){
7
obj.innerHTML="Mouse Over Me"
8
}
9
</script>
10