/** * 内容改变时并不会触发事件,但是在失去焦点的时候会触发。 */ $("#inputid").change(function(){ console.log($(this).val()); }); /** * 只要文本类容发生改变,就会触发该事件 */ $("#inputid").bind("input propertychange",function(){ console.log($(this).val()); });
时间: 2024-12-16 03:20:37
/** * 内容改变时并不会触发事件,但是在失去焦点的时候会触发。 */ $("#inputid").change(function(){ console.log($(this).val()); }); /** * 只要文本类容发生改变,就会触发该事件 */ $("#inputid").bind("input propertychange",function(){ console.log($(this).val()); });