主题: 实在弄不明白了,为什么我的kin编辑器,会自动解码~~~~~~ |
作者: cdm, 发布日期: 2012-12-22 18:00:48, 浏览数: 2914 |
数据库里、前台输出的源文件里的代码是
<textarea name="neirong" class="neirong" id="neirong"><pre class="prettyprint lang-js"><a href="http://wang.hainac.com/" target="_blank">网</a></pre></textarea> 但kin编辑器中就自动解码成
<pre class="prettyprint lang-js"><a href="http://wang.hainac.com/" target="_blank">网</a></pre>
这样还怎么编辑代码?求高手解答,怎么设置,啊
下面是我的代码
<!doctype html> <html> <head> <meta charset="utf-8"/> <title>任务编辑</title> <script src="/kin414/kindeditor-all-min.js"></script> <link href="/kin414/plugins/code/prettify.css?t=20110528.css" rel="stylesheet" /> <link href="/kin414/themes/default/default.css?t=20121111.css" rel="stylesheet" /> <script src="/kin414/plugins/code/prettify.js?t=20110528.js"></script> </head> <body> <script> KindEditor.ready(function(K) { K.create('#neirong', { resizeType : 1, filterMode : true, allowImageUpload : false, allowFlashUpload : false, allowMediaUpload : false, allowFileManager : false, cssPath : ['/ke4/plugins/code/prettify.css', '/css/main.css'], items : [ 'source', '|', 'fullscreen', 'print', 'undo', 'redo', 'cut', 'copy', 'paste', 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript', 'superscript', '|', 'code', '/', 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', 'removeformat', 'selectall', '|', 'image', 'flash', 'media', 'table', 'hr', 'emoticons', 'link', 'unlink', '|', 'about' ] }); }); </script> <form action="" method="post"> <p><strong>名称:</strong><input class="wenbenkuang" name="mingcheng" type="text" value="明哥编辑"/><small>(请填写任务名称)</small></p> <p><strong>内容:</strong><textarea name="neirong" class="neirong" id="neirong"><pre class="prettyprint lang-js"><a href="http://wang.hainac.com/" target="_blank">网</a></pre></textarea><small>(任务的内容)</small></p> </form> </body> </html> |