kindeditor js**:
kindeditor.ready(function (k) ,
afterchange: function(),
aftercreate: function ()
});editor.sync();
prettyprint();
});
html**:
新增文章的時候,把textarea中的值存入資料庫,可以直接用
var passage = document.getelementbyid('content').value;
把值傳回後台資料庫
但是修改文章的時候,需要先從資料庫中獲取到資料後在前端進行顯示,顯示不能直接用
$("#passage").val(articlevideo.content);
而要用
$(document.getelementsbytagname('iframe')[0].contentwindow.document.body).html(articlevideo.content);
修改完之後再存回到資料庫,要用
var passage = $(document.getelementsbytagname('iframe')[0].contentwindow.document.body).html();
用別的方式可能會導致存入資料為空的情況發生
MVC中KindEditor的簡單使用
第二 新增homecontroller 注意validateinput 特性設定為 false 否則無法插入 html 標記。第三 在檢視中新增指令碼 html.raw viewbag.content using html.beginform 第四 在客戶端新增litjson.dll引用 專案引用 ...
KindEditor的使用入門(一)
kindeditor.options.filtermode true kindeditor.ready function k 頁面 直接在ajax裡面賦值editore1.html data 0 你們自己可以擴充套件其他內容,這裡注意3點 1點 csspath root assets global ...
KindEditor簡單的Demo使用
一般的做 後台都會用到富文字編輯器,網上也有很多優秀的富文字編輯器,這裡是開源中國的富文字編輯器推薦 好了說了這麼進入正題 把這些檔案複製進入你的專案 對應的前台 c autoeventwireup true codebehind default.aspx.cs inherits kindeidto...