답변:
$('#textarea').blur()
$('#textarea').bind('blur', function() ...)
도
당신이 찾고있는 것 같아 .focusout()
focusout
입력이 이미 초점을 잃기 시작한 후에 만 -1 이 시작됩니다. 질문자는 그 상태로 요소를 넣어 원하는 SOA 콜백 핸들러 그에게 좋은의 할 것 developer.mozilla.org/en-US/docs/Web/Reference/Events/focusout의 api.jquery.com/focusout을
이것은 나를 위해 작동합니다 :
// Document click blurer
$(document).on('mousedown', '*:not(input,textarea)', function() {
try {
var $a = $(document.activeElement).prop("disabled", true);
setTimeout(function() {
$a.prop("disabled", false);
});
} catch (ex) {}
});
.focusout()
약간 다른 jQuery 함수 가 아니라 문서를 인용하여blur()
This is distinct from the blur event in that it supports detecting the loss of focus on descendant elements (in other words, it supports event bubbling)