主题: autoheight一个页面不支持多个加载
作者: 小浪子, 发布日期: 2013-10-08 11:55:31, 浏览数: 1973

操作系统:
Win2003,Win7
浏览器版本:
IE8,火狐
KindEditor版本:
4.1.8
BUG再现步骤:
1.
2.
3.

期望结果:

支持

 

测试代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Auto Height Examples</title>
<style> 
form {
	margin: 0;
}
textarea {
	display: block;
}
</style>
<link rel="stylesheet" href="../themes/default/default.css" />
<script charset="utf-8" src="../kindeditor-min.js"></script>
<script charset="utf-8" src="../lang/zh_CN.js"></script>
<script> 
KindEditor.ready(function(K) {
    K.create('textarea[name="content"]', {
        autoHeightMode : true,
        afterCreate : function() {
            this.loadPlugin('autoheight');
        }
    });
	K.create('textarea[name="abc"]', {
        autoHeightMode : true,
        afterCreate : function() {
            this.loadPlugin('autoheight');
        }
    });
});
</script>
</head>
<body>
<h3>自动调整高度</h3>
<form>
  <textarea name="content" style="width:800px;height:200px;"></textarea>
</form>
<form>
  <textarea name="abc" style="width:800px;height:200px;"></textarea>
</form>
</body>
</html>

作者: 小浪子, 发布日期: 2013-10-08 16:20:29
这个打算今天晚上修复吗?
回复
作者: Roddy, 发布日期: 2013-10-08 17:19:08
回复小浪子:嗯
回复
发表新帖 发表回复