ckeditor獲取資料
今天碰到一個問題,獲取ckeditor的資料。。。。。因為現在做的專案是在師兄們做好的專案上改,將ext.net框架的換成前臺的bootstrap,對於菜鳥的我來說,真是老費勁了,最初的專案aspx,可以再前臺新增控制元件,師兄已經經ckeditor做成了控制元件,可以在前臺新增
<%@ Register Src="../UserControls/Editor.ascx" TagName="Editor" TagPrefix="uc1" %>
之後新增使用者自定義的控制元件
<uc1:Editor ID="EditorContent" runat="server" />
後臺在獲取資料時,採用string descript = EditorContent.Text;
但是改成bootstrap之後由於採用了處理程式和html頁面分開的形式,在html頁面中不能新增自己定義的窗體,所以採用了另一種方式
<textarea id="content" class="ckeditor" name="content" rows="30" cols="20">Ckeditor內容</textarea>
在前臺獲取editor中資料時,查閱了一些資料找到了辦法,
var contents = CKEDITOR.instances.content.getData();
textarea屬性值 name="content": 名字可隨意定義,但是一定要與instances.後面的名字一致,得到資料之後,就可以傳到後臺使用了
ckeditor可以根據配置檔案 設定成為自己喜好的編輯器,
這是我簡化後的ckeditor
其中部分配置檔案是config.js
config.skin = "kama";
//編輯框
CKEDITOR.config.toolbar_Custom = [['PasteFromWord', '-', 'Print', 'Undo', 'Redo', 'Bold', 'Italic', 'Underline', 'Subscript', 'Superscript', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', 'Link', 'Unlink', 'Anchor',
'Image', 'Flash', 'Table', 'Font', 'FontSize', 'TextColor', 'BGColor']];
config.toolbar = 'Custom';
// config.height = 285;
config.resize_enabled = false;
//config.toolbar = 'Full';
//可以調節上傳對話方塊的窗體大小
config.filebrowserWindowWidth = '800';
config.filebrowserWindowHeight = '500';
相關文章
- 獲取Wireshark資料流
- 1.獲取資料
- Modbus ASCII 獲取資料ASCII
- datatables 獲取 pageLength 和 pageStart,重新獲取table資料
- 【譯】React如何獲取資料React
- Mysql批量大資料獲取MySql大資料
- 獲取天氣介面資料
- 從session中獲取資料Session
- 微信小程式—— 獲取資料微信小程式
- 如何獲取想要的資料?
- datatables使用ajax獲取資料
- java連線Oracle資料庫獲取資料JavaOracle資料庫
- 如獲取獲取關聯資料的文件跟模型的關聯資料集呢模型
- Flutter 中的資料的獲取Flutter
- JavaScript獲取物件資料型別JavaScript物件資料型別
- Python獲取jsonp資料PythonJSON
- TreeMap get獲取資料為nullNull
- jdbcTemplate 獲取資料表結構JDBC
- 在Grails使用Sql獲取資料AISQL
- 最大取值資料列行獲取
- jdbc獲取資料庫連線JDBC資料庫
- ros|TF工具獲取IMU資料ROS
- created mounted 動態獲取資料渲染後,獲取DOM問題
- ckeditor
- 怎樣獲取jstree的節點資料_大資料獲客是怎樣獲取精準客源的JS大資料
- dataTransfer.getData()無法獲取資料
- Spring多資料來源獲取Spring
- jqGrid獲取json資料方法JSON
- 從 falcon api 中獲取資料API
- 關於如何獲取資料的方法
- 教你如何使用API介面獲取資料!API
- electron + go 如何從sqlite獲取資料GoSQLite
- python獲取全國地鐵資料Python
- 智慧手環睡眠資料API獲取API
- 從資料字典中獲取ash資訊
- restfus webservices獲取資料的api方法RESTWebAPI
- 獲取資料庫bak檔案資訊資料庫
- 獲取oracle 系統資料的sqlOracleSQL