标签:style blog http color io 使用 ar strong 文件
本文大多内容来自KindEditor官网,自己加工理解后做的一个备份。
下载 KindEditor 最新版本,下载之后打开 examples/index.html 就可以看到演示。
下载页面: http://www.kindsoft.net/down.php
解压 kindeditor-x.x.x.zip 文件,将所有文件上传到您的网站程序目录里
Note
您可以根据需求删除以下目录后上传到服务器。
<textarea id="editor_id" name="content" style="width:700px;height:300px;"> <strong>HTML内容</strong> </textarea>
Note id在当前页面必须是唯一的值。 在textarea里设置HTML内容即可实现编辑,在这里需要注意的是,如果从服务器端程序(ASP、PHP、ASP.NET等)直接显示内容,则必须转换HTML特殊字符(>,<,&,”)。具体请参考各语言目录下面的demo.xxx程序,目前支持ASP、ASP.NET、PHP、JSP。 在有些浏览器上不设宽度和高度可能显示有问题,所以最好设一下宽度和高度。宽度和高度可用inline样式设置,也可用 编辑器初始化参数 设置。
<script charset="utf-8" src="/editor/kindeditor.js"></script> <script charset="utf-8" src="/editor/lang/zh_CN.js"></script> <script> KindEditor.ready(function(K) { window.editor = K.create(‘#editor_id‘); }); </script>
// 取得HTML内容
html = editor.html();
// 同步数据后可以直接取得textarea的value
editor.sync();
html = document.getElementById(‘editor_id‘).value; // 原生API
html = K(‘#editor_id‘).val(); // KindEditor Node API
html = $(‘#editor_id‘).val(); // jQuery
// 设置HTML内容
editor.html(‘HTML内容‘);
地址 : http://kindeditor.net/ke4/examples/default.html
下载地址: 点 我 下 载
【HTML】KindEditor编辑器在ASP.NET中使用
标签:style blog http color io 使用 ar strong 文件
原文地址:http://www.cnblogs.com/ruicky/p/3987920.html