- 注册时间
- 2012-12-31
- 最后登录
- 2013-1-29
- 阅读权限
- 10
- 积分
- 44
- 精华
- 0
- 帖子
- 8
|
本帖最后由 wlll 于 2013-1-3 18:13 编辑
我参考http://www.miniui.com/demo/index.html#src=kindeditor/kindeditor.html
想用kindEditor替掉 编辑弹窗里的备注:
<textarea name="remarks" id="remarks" class="mini-textarea" style="width:350px;height:60px;"> </textarea>
如下图所示:
编辑弹窗中有关kindEditor的代码为:
<script charset="utf-8" src="../kindeditor/kindeditor-min.js"></script>
<script charset="utf-8" src="../kindeditor/lang/zh_CN.js"></script>
<script>
var editor;
KindEditor.ready(function(K) {
editor = K.create('#remarks', {
resizeType : 1,
uploadJson : '../kindeditor/asp.net/upload_json.ashx',
fileManagerJson : '../kindeditor/asp.net/file_manager_json.ashx',
allowFileManager : true,
shadowMode:false,
autoSetDataMode:false,
allowPreviewEmoticons:false,
allowImageUpload : true,
items : ['fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold','removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'emoticons', 'image', 'link']
});
});
</script>
问题描述:
当我将上述红色代码去掉时,备注框里有信息;不去掉时,虽然备注框变成kindEditor了,但备注框里信息没有了,变成空白了。我想要:备注框变成kindEditor时,信息也还在。
谢谢。不知我表达清楚没?
|
|