中文输入法input事件

时间:2024-09-15 21:04:02
 var iscancel = false;
$("#sysearch").on({
input: function (e) {
if (!iscancel) {
//do something
}
},
compositionstart: function () {
iscancel = true;
},
compositionend: function () {
iscancel = false;
$(this).trigger('input');
}
})