當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery blur()用法及代碼示例


blur()是jQuery的一種內置方法,用於從所選元素中刪除焦點。此方法啟動模糊事件,或者可以附加一個在發生模糊事件時運行的函數。
用法:

$(selector).blur(function)

參數:它接受可選參數“function”。
返回值:它不返回任何內容,僅觸發所選元素上的模糊事件。

jQuery代碼顯示blur()函數的工作方式:

代碼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”值後,

在屏幕上任意位置單擊鼠標按鈕後,



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | blur() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。