jQuery :focus

admin發表於2017-02-14

此選擇器能夠匹配當前獲取焦點的元素。

jQuery1.6版本新增。

語法結構:

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

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript"> 
 $(document).ready(function () {
   $("input").on("focus blur", function () {
     var me = $(this);
     var msg = me.is(":focus") ? ("請輸入[" + me.attr("label") + "]") : "";
     $("#message").html(msg);
   });
}) 
</script>
</head>
<body>
  <div id="n1">
    <input name="name" type="text" label="姓名"><br>
    <input name="age" type="text" label="年齡"><br>
    <input name="cellphone" type="text" label="手機號碼">
  </div>
  <div id="message"></div>
</body>
</html>

如果當前文字框獲得焦點,就給出對應的提示。

相關文章