1.只需要同时绑定 oninput 和 onpropertychange 两个事件,获取input元素,并实时监听用户输入。
$('input').bind('input propertychange', function(){
if($(this).val()){
console.log("hhhhhhhh");
}else{
console.log("xxxxxxxx");
}
})
但这并不完美,因为用的bind,所以当遇到追加的新input标签时,则不能监听了。
2.为了解决上面的问题,可以使用live替代
$('input').live('input propertychange', function()
{
//获取input 元素,并实时监听用户输入
//逻辑
})