blur()是jQuery的一種內置方法,用於從所選元素中刪除焦點。此方法啟動模糊事件,或者可以附加一個在發生模糊事件時運行的函數。
用法:
$(selector).blur(function)
參數:它接受可選參數“function”。
返回值:它不返回任何內容,僅觸發所選元素上的模糊事件。
代碼1:
在下麵的代碼中,沒有函數傳遞給blur方法。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/
jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#btn").click(function() {
$("input").blur();
$("p").html("This is blur method that is used!!!");
});
});
</script>
</head>
<body>
<!--enter value and click on the button -->
Enter Value:
<input type="text">
<br>
<br>
<button id="btn">start blur event!!!</button>
<p style="color:green"></p>
</body>
</html>
輸出:
在“Enter Value”框中輸入任何值之前,
在“Enter Value”框中輸入“GeeksforGeeks”值後,
單擊“start blur event”按鈕後,
代碼2:
在下麵的代碼中,函數被傳遞給blur方法。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/
jquery/3.3.1/jquery.min.js"></script>
<script>
<!-- jQuery code to show blur method -->
$(document).ready(function() {
$("input").blur(function() {
$(this).css("background-color", "#ADFF2F");
});
});
</script>
</head>
<body>
<!-- Enter a value to the field and click outside
to see the change -->
Enter Value:
<input type="text" name="fullname">
</body>
</html>
輸出:
在“Enter Value”框中輸入任何值之前,
在“Enter Value”框中輸入“GeeksforGeeks”值後,
在屏幕上任意位置單擊鼠標按鈕後,
相關用法
- JQuery one()用法及代碼示例
- JQuery val()用法及代碼示例
- JQuery last()用法及代碼示例
- JQuery on()用法及代碼示例
- JQuery after()用法及代碼示例
- JQuery first()用法及代碼示例
- JQuery eq()用法及代碼示例
- JQuery has()用法及代碼示例
- JQuery replaceAll()用法及代碼示例
- JQuery removeProp()用法及代碼示例
- JQuery mouseout()用法及代碼示例
- JQuery replaceWith()用法及代碼示例
- JQuery resize()用法及代碼示例
- JQuery mouseover()用法及代碼示例
- JQuery removeAttr()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | blur() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。