DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript實現類似超鏈接的效果
javascript實現類似超鏈接的效果
編輯:關於JavaScript     

實現類似超鏈接的效果,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的事件有所認識了呢,有疑問就給我留言吧

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved