欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

kindeditor使用

程序员文章站 2022-06-01 10:40:46
...

官方文档
自用版修改链接,放在/Public目录下

<textarea
	name="article_content"
	id="editor"
	style="width:100%;height:500px;"
>{$row[article_content]}</textarea>
<script src="/Public/kindeditor/kindeditor-all-min.js"></script>
<script src="/Public/kindeditor/lang/zh-CN.js"></script>
<script>
	var editorItems = [
		'source'
		, '|'
		, 'undo'
		, 'redo'
		, '|'
		, 'plainpaste'
		, 'wordpaste'
		, 'clearhtml'
		, '|'
		, 'justifyleft'
		, 'justifycenter'
		, 'justifyright'
		, '|'
		, 'fontsize'
		, 'forecolor'
		, 'hilitecolor'
		, 'bold'
		, 'italic'
		, 'underline'
		, 'strikethrough'
		, 'removeformat'
		, '|'
		, 'image'
		, 'insertfile'
		, '|'
		, 'link'
		, 'unlink'
		, '|'
		, 'preview'
		, 'fullscreen'
	]
	KindEditor.ready(function (K) {
		window.editor = K.create('#editor', {
			// , uploadJson: '/Public/kindeditor/php/upload_json.php'
			items: editorItems
		});
	})
</script>
相关标签: DEFAULT