主题: 如何使用TextArea的onpropertychange事件 |
作者: xchen, 发布日期: 2012-07-29 20:48:30, 浏览数: 2970 |
我想扔掉讨厌滚动条,想在TextArea使用onpropertychange事件 如onpropertychange=‘this.style.posHeight=this.scrollHeight;’ 在onfocus也使用这个 正常可以使用,但在KindEditor根本起不到作用 我的做法是:
KE.event.add(document, 'onpropertychange', function(){KE.$("neirong").style.posHeight=this.scrollHeight;},KE.id);
|