实时监听输入框(input)的值改变事件:input和propertychange
实时监听常用于手机网页和微信网页。当键盘输入后,选择文字后可以触发这个事件。
oninput事件:非IE下可以使用
onpropertychange事件:IE可以使用
使用jquery可以方便得监听:
$("input").on("input propertychange", function (){});
oninput事件:非IE下可以使用
$("input").on("input propertychange", function (){});