1. 程式人生 > >Kindeditor線上HTML富文字編輯器使用入門

Kindeditor線上HTML富文字編輯器使用入門

KindEditor 是一套開源的 HTML 視覺化編輯器,主要用於讓使用者在網站上獲得所見即所
得編輯效果,相容 IE、Firefox、Chrome、Safari、Opera 等主流瀏覽器。
這裡寫圖片描述

kindeditor官方網站網址:
http://kindeditor.net/demo.php
這裡寫圖片描述
這裡寫圖片描述
解壓下載包,開發中只需要匯入選中的檔案(通常在 webapp 下,建立 editor 資料夾 )。
這裡寫圖片描述
在HTML檔案中匯入相關js和css檔案。
這裡寫圖片描述
在文字域textarea中設定一個id的值為description。
這裡寫圖片描述
在js中建立一個kindeditor,將其嵌入到textarea中。
這裡寫圖片描述


完整程式碼:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>新增宣傳任務</title>
        <!-- 匯入jquery核心類庫 -->
        <script type="text/javascript" src="../../js/jquery-1.8.3.js"></script>
        <!-- 匯入easyui類庫 -->
        <link
rel="stylesheet" type="text/css" href="../../js/easyui/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../js/easyui/themes/icon.css"> <link rel="stylesheet" type="text/css" href="../../css/default.css"> <script type="text/javascript" src="../../js/easyui/jquery.easyui.min.js"
>
</script> <script src="../../js/easyui/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> <!--匯入線上HTML編輯器 --> <script type="text/javascript" src="../../editor/kindeditor.js" ></script> <script type="text/javascript" src="../../editor/lang/zh_CN.js" ></script> <link rel="stylesheet" href="../../editor/themes/default/default.css" /> <script type="text/javascript"> $(function(){ $("body").css({visibility:"visible"}); $("#back").click(function(){ location.href = "promotion.html"; }); KindEditor.ready(function(K) { window.editor = K.create('#description',{ items : [ 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste', 'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript', 'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/', 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage', 'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak', 'anchor', 'link', 'unlink', '|', 'about' ], allowFileManager:true, uploadJson : '../../image_upload.action', fileManagerJson : '../../image_manage.action' }); }); // 為儲存按鈕,新增click事件 $("#save").click(function(){ if($("#promotionForm").form('validate')){ // 通過kindEditor資料到textarea window.editor.sync(); // 提交表單 $("#promotionForm").submit(); }else{ // 校驗失敗 $.messager.alert("警告資訊","表單中存在資料非法項!","warning"); } }); }); </script> </head> <body class="easyui-layout" style="visibility:hidden;"> <div region="north" style="height:31px;overflow:hidden;" split="false" border="false"> <div class="datagrid-toolbar"> <a id="save" icon="icon-save" href="#" class="easyui-linkbutton" plain="true">儲存</a> <a id="back" icon="icon-back" href="#" class="easyui-linkbutton" plain="true">返回列表</a> </div> </div> <div region="center" style="overflow:auto;padding:5px;" border="false"> <form id="promotionForm" enctype="multipart/form-data" action="../../promotion_save.action" method="post"> <table class="table-edit" width="95%" align="center"> <tr class="title"> <td colspan="4">宣傳任務</td> </tr> <tr> <td>宣傳概要(標題):</td> <td colspan="3"> <input type="text" name="title" id="title" class="easyui-validatebox" required="true" /> </td> </tr> <tr> <td>活動範圍:</td> <td> <input type="text" name="activeScope" id="activeScope" class="easyui-validatebox" /> </td> <td>宣傳圖片:</td> <td> <input type="file" name="titleImgFile" id="titleImg" class="easyui-validatebox" required="true"/> </td> </tr> <tr> <td>釋出時間: </td> <td> <input type="text" name="startDate" id="startDate" class="easyui-datebox" required="true" /> </td> <td>失效時間: </td> <td> <input type="text" name="endDate" id="endDate" class="easyui-datebox" required="true" /> </td> </tr> <tr> <td>宣傳內容(活動描述資訊):</td> <td colspan="3"> <textarea id="description" name="description" style="width:80%" rows="20"></textarea> </td> </tr> </table> </form> </div> </body> </html>