如何解开textarea或输入?我找不到$('#my-textarea').unfocus();
方法?
答案 0 :(得分:323)
$('#textarea').blur()
答案 1 :(得分:9)
根据您的问题,我相信答案是如何触发模糊,而不仅仅是(甚至)设置事件:
$('#textArea').trigger('blur');
答案 2 :(得分:7)
猜猜你在寻找.focusout()
答案 3 :(得分:0)
这对我有用:
// 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) {}
});
答案 4 :(得分:0)
我喜欢以下方法,因为它适用于所有情况:
$(':focus').blur();
答案 5 :(得分:-11)
所以你可以这样做
$('#textarea').attr('enable',false)
尝试并提供反馈