KindEditor取值和赋值
KindEditor 取值和赋值
应用版本:4.1.7
按照提示进行瘦身(看),设备如下:
一,webconfig中:
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime requestValidationMode="2.0" />
</system.web>
</configuration>
二、页面头部,必然要加上ValidateRequest="false":
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" ValidateRequest="false"
Inherits="WebTest.WebForm2" %>
以上是避免恳求数据搜检时,报错:传输数占领风险。
三、HTML代码:
<textarea id="textContent" name="Descirpt" cols="70" rows="35" rtcscls-1-s_p_1 rtcscls-1-s_r_2 rtcscls-1-s_sn_3_rId_a rtcscls-1-s_p_4_rId_a rtcscls-1-s_r_5_rId_a rtcscls-1-s_sn_24_rId_HTML rtcscls-1-p_4 rtcscls-1-r_0">height: 400px; visibility: hidden;" enableviewstate="true"></textarea>
四、初始化KindEditor并为其赋值,这里封装到一个办法里面,可以在AJAX恳求完成后,调用办法并把数据绑定到textarea中。此中,editor是全局变量,便利今后取值。
var editor;
/
/绑定命据
function bindData(data) {
var options = {
width: ""700px"",
height: ""400px"",
uploadJson: ""/Scripts/KindEditor/asp/upload_json.ashx"",
fileManagerJson: ""/Scripts/KindEditor/asp/file_manager_json.ashx"",
allowFileManager: true,
afterBlur: function () {
this.sync();
},
textarea中cols表示
afterCreate: function () {
this.sync();
}
}
editor = ate(""#textContent"", options);
prettyPrint();
editor.html(data);
}
五、批改完成后,取值就简单了,直接就是:editor.html()。。
在此,希罕感激:老胡,年老权,为乐。供给解析思路和帮助!!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。