jQuery focus事件

admin發表於2017-02-18

當一個元素獲得焦點時,focus事件被觸發。

此事件起初適用於有限的元素,比如表單元素(<input>, <select>等)和連結元素(<a href>)。

在最近版本的瀏覽器中,該事件可以擴充套件到所有包括通過顯式設定tabindex屬性的元素型別。

一個元素可以通過鍵盤命令獲得焦點,如Tab鍵,或按滑鼠點選的元素。

語法結構一:

[JavaScript] 純文字檢視 複製程式碼
.focus(handler(eventObject))

引數解析:

(1).handler:事件處理函式;eventObject是傳遞給事件處理函式的時間物件。

jQuery1.0版本新增。

語法機構二:

[JavaScript] 純文字檢視 複製程式碼
.focus([eventData ], handler(eventObject))

引數解析:

(1).eventData:可選,當一個事件被觸發時,要傳遞給event.data的資料。

(2).handler:事件處理函式;eventObject是傳遞給事件處理函式的時間物件。

jQuery1.4.3版本新增。

語法結構三:

[JavaScript] 純文字檢視 複製程式碼
.focus()

引數解析:

如果沒有傳遞引數,那麼呼叫此方法會執行事件處理函式。

jQuery1.0版本新增。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){ 
  $("input").blur(function(){ 
    $(this).css("backgroundColor","green"); 
  }) 
  $("input").focus(function(){ 
    $(this).css("backgroundColor","red"); 
  }) 
})  
</script>
</head>
<body>
<div>
  <ul>
    <li>姓名:<input type="text" name="username"/></li>
    <li>密碼:<input type="password" name="pw" /></li>
  </ul>
</div>
</body>
</html>

表單元素失去或者獲得焦點時重置它們的背景色。

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script type="text/javascript"> 
$(document).ready(function () {
  var infor = {
    address: "青島市南區"
  }
  $("input").blur(function(){ 
    $(this).css("backgroundColor", "green");
    $(this).val("");
  }) 
  $("input").focus(infor, function (ev) {
    $(this).css("backgroundColor", "red");
    $(this).val(ev.data.address);
  }) 
})  
</script>
</head>
<body>
<div>
  <ul>
    <li>姓名:<input type="text" name="username"/></li>
    <li>密碼:<input type="password" name="pw" /></li>
  </ul>
</div>
</body>
</html>

相關文章