正在奮鬥 富文本,KindEditor的使用方法及(jsp)案例--改正過__js

來源:互聯網
上載者:User

在網上下載KindEditor源檔案,

我用的是kindEditor4.1.2版本,加壓縮後目錄如下圖:

 

步驟1、將asp,asp.net,examples,php檔案刪除,同時將jsp中的lib檔案夾下的三個jar包拷貝到WEB-INF的lib下。

步驟2、建立一個editor檔案夾,將剩餘的檔案放到該檔案下面,同時將該檔案放到專案檔下面。如項目名為phone則放在phone檔案下。

步驟3、在需要富文本的jsp中加入一下代碼

          <script charset="utf-8" src="http://www.cnblogs.com/http://www.cnblogs.com/editor/kindeditor.js"></script>
     <script charset="utf-8" src="http://www.cnblogs.com/http://www.cnblogs.com/editor/lang/zh_CN.js"></script>
     <script>
           var editor;
KindEditor.ready(function(K) {
editor = K.create('textarea[name="edit_id"]', {
allowFileManager : true,
//設定編輯器為簡單模式
items : [ 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist', '|', 'emoticons', 'image', 'link' ],
//下面這行代碼就是關鍵的所在,當失去焦點時執行 this.sync();
afterBlur : function() {
this.sync();
}
});
});
     </script>

步驟4、將頁面中需要富文本的textarea設定成如下形式

         <textarea id="editor_id" name="content" style="width:700px;height:300px;"></textarea> 

步驟5、後台就可以按著平常的擷取參數的方法擷取textarea的內容,該欄位對應的mysql中的欄位最好設定成text文字欄位。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.