jquery实时监听input输入框值的变化事件
1.只需要同时绑定 oninput 和 onpropertychange 两个事件,获取input元素,并实时监听用户输入。$('input').bind('input propertychange', function(){ if($(this).val()){ console.log("hhhhhhhh"); }else{ console.log("xxxxxxxx"); ...
转载
2018-07-30 16:23:21 ·
87190 阅读 ·
0 评论