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

KindEditor 多个编辑器唯其如此取到第一个编辑器的值

2013-12-20 
KindEditor 多个编辑器只能取到第一个编辑器的值KindEditor.ready(function(K) {var editor1 K.create(

KindEditor 多个编辑器只能取到第一个编辑器的值

KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content1"]', {
uploadJson : '../kindeditor/jsp/upload_json.jsp',
allowFileManager : true,
resizeType:0,
});
var editor2 = K.create('textarea[name="content2"]', {
uploadJson : '../kindeditor/jsp/upload_json.jsp',
allowFileManager : true,
resizeType:0,
});
var editor3 = K.create('textarea[name="content3"]', {
uploadJson : '../kindeditor/jsp/upload_json.jsp',
allowFileManager : true,
resizeType:0,
});
var editor4 = K.create('textarea[name="content4"]', {
uploadJson : '../kindeditor/jsp/upload_json.jsp',
allowFileManager : true,
resizeType:0,
});
});


<textarea id="content1" name="content1" cols="100" rows="10"></textarea>
<textarea id="content2" name="content2" cols="100" rows="10"></textarea>
<textarea id="content3" name="content3" cols="100" rows="10"></textarea>
<textarea id="content4" name="content4" cols="100" rows="10"></textarea>

[解决办法]
不会吧,取值的代码呢?,我这边有几个没什么问题哦
[解决办法]
废话,你的插件都在同一个路径下,肯定只能取到第一个啊。

热点排行