首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

firefox中的onpropertychange代替方案

2013-05-02 
firefox中的onpropertychange替代方案document.getElementById(tx1).watch(innerHTML,function (id, o

firefox中的onpropertychange替代方案

document.getElementById('tx1').watch("innerHTML",         function (id, oldval, newval) {            console.log("foo." + id + " changed from " + oldval + " to " + newval);          return newval;  }); 

?

热点排行