我有一个带有一些预设选项的 HTML 页面,当我使用纯 HTML 文本区域时,它可以正常工作,但是当我使用富编辑器时,文本区域不会保存数据,请参阅演示页面。
工作页面:这里
非工作页面:这里
更改此代码
$mydropdown.change(function(){
nicEditors.findEditor("TextArea").setContent($mytextbox.val() + TextVars[$(this).val()]);
});
$("input[type='checkbox'][name*='ImageVar']").change(function () {
var $chk = $(this);
if ($chk.prop('checked')) {
nicEditors.findEditor("TextArea").setContent($mytextbox.val() + ImageVars[$chk.attr('name')]);
} else {
nicEditors.findEditor("TextArea").setContent($mytextbox.val().replace(ImageVars[$chk.attr('name')], ""));
}
});
到下面的代码
$mydropdown.change(function(){
nicEditors.findEditor("TextArea").setContent(nicEditors.findEditor("TextArea").getContent() + TextVars[$(this).val()]);
});
$("input[type='checkbox'][name*='ImageVar']").change(function(){
var $chk = $(this);
if($chk.prop('checked')){
nicEditors.findEditor("TextArea").setContent(nicEditors.findEditor("TextArea").getContent() + ImageVars[$chk.attr('name')]);
}else{
nicEditors.findEditor("TextArea").setContent(nicEditors.findEditor("TextArea").getContent().replace(ImageVars[$chk.attr('name')], ""));
}
});