2011-04-12 26 views
0

我有一個函數,當文本框獲得焦點時執行,另一個函數失去焦點時執行。問題是我不知道在哪裏附上失去焦點事件的功能。對於焦點,我使用我應該使用什麼事件來檢查輸入框在jQuery中失去焦點時

$(" :input[class='Txtbox']").focus(function(){ 
     $(this).val(""); 

    }); 
+0

的可能重複[jQuery的無焦點的方式](http://stackoverflow.com/questions/857245/jquery-unfocus) – mVChr 2011-04-12 10:47:51

回答

3

使用blur事件。

$(" :input[class='Txtbox']").blur(function(){ 
    //do something 
}); 
1
$(" :input[class='Txtbox']").blur(function() { 
}); 
1

使用`blur'事件處理程序。然後在回調做任何你想要的(我敢肯定你已經):

$(" :input[class='Txtbox']").blur(function(){ 
    // Do Something... 
}); 
相關問題