change事件的兼容性问题
当input的value被修改时,在没有失去焦点的情况下,无法触发change事件,但是可以触发propertychange事件。
但是propertychange事件存在兼容性问题:
IE9以下支持propertychange
IE9及以上、chrome、firefox支持input事件。
因此,在判断input是否内容改变时,需要绑定propertychange和input事件
$("input").on("propertychange input", function(){});