kindeditor用法

http://www.cnblogs.com/authen/archive/2009/11/28/1612586.html

开发包下载
http://kindeditor.googlecode.com/files/kindeditor-4.0.1.zip
保留lang,plugins,themes,kindeditor-min.js文件
<script type="text/javascript" charset="utf-8" src="/nms__TMPL__Public/kindeditor-min.js"></script>
<script type="text/javascript">
			var editor;
			KindEditor.ready(function(K) {
				editor = K.create('textarea[name="content"]', {
					allowFileManager : true
				});
			});
</script>

<textarea name="content" style="width:800px;height:400px;visibility:hidden;"></textarea>

你可能感兴趣的:(kindeditor)