設定文字框得到焦點或者失去焦點時的樣式

admin發表於2017-02-24

通常情況下,文字框獲得焦點或者失去焦點的時候,會相應的對文字框的樣式有所改變,以增加美觀度,下面就介紹一下如何實現此功能,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>文字框獲得焦點的樣式-螞蟻部落</title>
<style type="text/css">
ul{list-style:none}
ul li{
  height:30px;
  font-size:12px;
}
input{
  width:120px;
  height:16px;
}
.focusClass{
  color:green;
  background-color:#CCC;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("input").focus(function(){ 
    $(this).addClass("focusClass"); 
  }).blur(function(){ 
    $(this).removeClass("focusClass"); 
  });
})
</script>
</head>
<body>
<ul>
  <li>姓名:<input type="text" name="userName" /></li>
  <li>密碼:<input type="password" name="pw" /></li>
</ul>
</body>
</html>

相關文章