onfocus和onblur應用程式碼例項

antzone發表於2017-03-10

這兩個事件應用頻繁,下面就通過例項簡單介紹一下它們的用法。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="author" content="http://www.softwhy.com/" />
<title>onblur和onfocus事件-螞蟻部落</title>
<style type="text/css">
li{
  height:30px;
  list-style:none;
  font-size:12px;
}
li input{
  width:120px;
  height:15px;
}
</style>
<script type="text/javascript">
function focusH(){
  this.style.backgroundColor="#CCC";
  this.style.color="green";
}
function blurH(){
  this.style.backgroundColor="red";
  this.style.color="yellow";
}
window.onload=function(){
  var userName=document.getElementById("userName");
  var pw=document.getElementById("pw");
   
  userName.onfocus=focusH;
  userName.onblur=blurH;
   
  pw.onfocus=focusH;
  pw.onblur=blurH;
}
</script>
</head>
<body>
<div>
  <ul>
    <li>姓名:<input type="text" id="userName" /></li>
    <li>密碼:<input type="password" id="pw" /></li>
  </ul>
</div>
</body>
</html>

當文字框和密碼框獲得焦點或者失去焦點的時候,能夠對背景顏色和字型顏色進行相應的設定。

關於onfocus事件和onblur事件這裡就不多介紹,可以參閱相關閱讀。

相關閱讀:

(1).onfocus事件參閱javascript focus事件一章節。

(2).onblur事件參閱javascript blur事件一章節。

相關文章