1、如何将kindediter的编码由UTF-8修改为GB2312 ?
2、<textarea rows="10" name="field8" id="field8" style="width:100%;height:150">
其中我的name是动态封装的一个变化的值,统一调用时,如何将name的值传递给的name ?
editor = K.create('textarea[name="这里"]',{}
var editor;
KindEditor.ready(function(K) {
editor = K.create('textarea[name="content"]', {
resizeType : 1,
allowPreviewEmoticons : false,
allowImageUpload : false,
items : [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link']
});
});