js 操作kindeditor編輯器

我就是曹總發表於2019-05-11

1.初始化,可參考對應滴simple.html程式碼,重要滴賦值給一個全域性變數


var editor;  
KindEditor.ready(function(K) {
		editor = K.create('textarea[name="content"]', {
			cssPath : '../js/kindeditor-4.1.9/plugins/code/prettify.css',
			uploadJson : '../jsp/upload_json.jsp', fileManagerJson : '../jsp/file_manager_json.jsp',
			allowFileManager : true,
			afterCreate : function() {
				var self = this;
				K.ctrl(document, 13, function() {
					self.sync();
					document.forms['example'].submit();
				});
				K.ctrl(self.edit.doc, 13, function() {
					self.sync();
					document.forms['example'].submit();
				});
			}
		});
		prettyPrint();
	});


2,js清空 編輯器


editor.html("");
editor.sync();//同步編輯器內容資訊,特別注意


3,獲取編輯滴值
editor.sync();//同步編輯器內容資訊
alert($('#contentId').val());

龐順龍最後編輯於:5年前

內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。

相關文章