1.下载kindeditor
网址:http://kindeditor.net/demo.php
2.解压到项目中
地址:\static\js\kindeditor-4.1.10
3.删除没用的文件
例如:example,php,asp等
4.在需要使用富文本编辑器的model中定义meta类:
class Media: js = ( ‘/static/js/kindeditor-4.1.10/kindeditor-min.js‘, ‘/static/js/kindeditor-4.1.10/lang/zh_CN.js‘, ‘/static/js/kindeditor-4.1.10/config.js‘, )
5.在kindeditor-4.1.10目录中定义config.js文件:
KindEditor.ready(function(K) { K.create(‘textarea[name=需要使用富文本的字段名]‘,{ width:‘800px‘, height:‘200px‘, }); });
时间: 2024-10-14 14:54:40