1 var bind_name = ‘input‘; 2 if (navigator.userAgent.indexOf("MSIE") != -1){ 3 bind_name = ‘propertychange‘; 4 } 5 //文本框编辑事件 6 $(obj).on(bind_name, function() {
keypress 和 keyup 会被输入法拦截,导致失效.
时间: 2024-10-13 23:15:02
1 var bind_name = ‘input‘; 2 if (navigator.userAgent.indexOf("MSIE") != -1){ 3 bind_name = ‘propertychange‘; 4 } 5 //文本框编辑事件 6 $(obj).on(bind_name, function() {
keypress 和 keyup 会被输入法拦截,导致失效.