jquery中实时监控文本框的变化

$('#xlh').on("input propertychange", function() {

});

不能使用 onChange事件,这个事件的触发需要失去焦点才可以。