标签:model 目录 net dia config demo text php 使用
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‘, }); });
标签:model 目录 net dia config demo text php 使用
原文地址:http://www.cnblogs.com/413xiaol/p/6852988.html