我有一個函數,當文本框獲得焦點時執行,另一個函數失去焦點時執行。問題是我不知道在哪裏附上失去焦點事件的功能。對於焦點,我使用我應該使用什麼事件來檢查輸入框在jQuery中失去焦點時
$(" :input[class='Txtbox']").focus(function(){
$(this).val("");
});
我有一個函數,當文本框獲得焦點時執行,另一個函數失去焦點時執行。問題是我不知道在哪裏附上失去焦點事件的功能。對於焦點,我使用我應該使用什麼事件來檢查輸入框在jQuery中失去焦點時
$(" :input[class='Txtbox']").focus(function(){
$(this).val("");
});
使用blur
事件。
$(" :input[class='Txtbox']").blur(function(){
//do something
});
$(" :input[class='Txtbox']").blur(function() {
});
使用blur()
事件。見http://api.jquery.com/blur/
使用`blur'事件處理程序。然後在回調做任何你想要的(我敢肯定你已經):
$(" :input[class='Txtbox']").blur(function(){
// Do Something...
});
的可能重複[jQuery的無焦點的方式](http://stackoverflow.com/questions/857245/jquery-unfocus) – mVChr 2011-04-12 10:47:51