主题: kindeditor高度自适应,在ie下只能变大不能缩小,火狐正常
作者: 我又来了, 发布日期: 2013-04-08 16:24:01, 浏览数: 3334

我的代码

$(function(){
    $('textarea').each(function(){
        KindEditor.create(this,{
            width:'500px',
            height:'88px',
            minHeight:'88px',
            newlineTag : 'br',
            themesPath : '{PUBLIC_PATH}js/KindEditor/themes/',
            pluginsPath: '{PUBLIC_PATH}js/KindEditor/plugins/',
            afterBlur:function(){
                if(!this.isEmpty()){
                    this.sync();
                }
            },
            afterChange:function(){
                var autoheight = KindEditor.IE?this.edit.doc.body.scrollHeight:this.edit.doc.body.offsetHeight;
                if(autoheight<88){
                    autoheight = '88';
                }
                this.edit.setHeight(autoheight);
            }
        })
    });
})


没找到是什么原因,求大牛帮忙

发表新帖 发表回复