gpt4 book ai didi

javascript - 清空 CKEditor -TextArea

转载 作者:行者123 更新时间:2023-12-03 07:46:07 28 4
gpt4 key购买 nike

我想清空 CKEditor 中的文本区域。
我可以使用 SetData(' ') 清除 TextArea,但只能在页面加载后清除一次。

我只在 Onchange 事件中编写了 jquery 函数。

  <%= Html.TextArea("AutoTextNotes", (consentForm != null && consentForm.Notes != null) ? CommonUtil.decodeHTML(consentForm.Notes) : "", new { id = "AutoTextNotes", validateRequest = "false", style = "width: 75%;height: 500px !important;", @class = "fck", onchange = "RemoveValidation('Error_AutoTextNotes');" })%>

Jquery 函数:-

function RemoveValidation(ErrorID) {
debugger;
$("#" + ErrorID).css("display", "none");
var fck_instance = FCKeditorAPI.GetInstance('AutoTextNotes');
var imf = fck_instance.GetHTML();
if (imf.contains("<img")) {
alert("Sorry, Image Is Not Supported For This TextArea");
fck_instance.Config.BodyClass = 'shobi';
fck_instance.SetData('');

}
}

如果我可以删除 TextArea 中的所有图像标签,这也会很有帮助。

最佳答案

您可以尝试使用

$("#id-textarea").val("");

关于javascript - 清空 CKEditor -TextArea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35198049/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com