實現類似超鏈接的效果,this代表本頁面元素
復制代碼 代碼如下:
<html>
<head>
<script type="text/javascript">
function mOver(obj){
obj.color="red";
}
function mOut(obj){
obj.color="blue";
}
</script>
</head>
<body>
<font style="cursor:hand"
onclick="window.location.href='http://www.baidu.com/'"
onmouseover="mOver(this)"
onmouseout="mOut(this)" >歡迎進入</font>
</body>
</html>
小伙伴們是否對javascript的事件有所認識了呢,有疑問就給我留言吧