输入框失去焦点,隐藏软键盘
2019-07-30 本文已影响0人
陌夏线
输入框失去焦点,隐藏软键盘
$("body").on("touchend", function (e) {
var target = $(e.target);
if(target.closest("input,textarea").length == 0){
document.activeElement.blur();
}
})
$("body").on("touchend", function (e) {
var target = $(e.target);
if(target.closest("input,textarea").length == 0){
document.activeElement.blur();
}
})