今天项目中有个需求,就是在input中输入文字的时候,相应的保存按钮由灰色禁用状态变成其他的颜色提示用户内容发生改变需要保存,由于使用了jquery,所以使用下面的方法来解决:
$('.title-input').bind('input porpertychange',function(){
resetEditorChanged(true);
});
在监听到 onpropertychange 事件后,可以使用 event 的 propertyName 属性来获取发生变化的属性名称,event.propertyName
Comments