|
|
|
@ -245,21 +245,22 @@ function sd_create_shixun_editor(params){
|
|
|
|
|
function sd_check_editor_form_field(params){
|
|
|
|
|
var result=true;
|
|
|
|
|
if(params.content!=undefined){
|
|
|
|
|
if(params.content.isEmpty()){
|
|
|
|
|
result=false;
|
|
|
|
|
}
|
|
|
|
|
if(params.content.html()!=params.textarea.html() || params.issubmit==true){
|
|
|
|
|
params.textarea.html(params.content.html());
|
|
|
|
|
params.content.sync();
|
|
|
|
|
if(params.content.isEmpty() || /^\s*<\w*\s*\w*\=\"\w*\"\s*\w*\=\"\w*\:\s*\#\d*\;\s*\w*\-\w*\:\s*\w*\;\"\>[\u4e00-\u9fa5]*<\/\w*\>\s*$/.test(params.textarea.html())){
|
|
|
|
|
params.contentmsg.html('内容不能为空');
|
|
|
|
|
params.contentmsg.css({color:'#ff0000'});
|
|
|
|
|
}else{
|
|
|
|
|
params.contentmsg.html('填写正确');
|
|
|
|
|
params.contentmsg.css({color:'#008000'});
|
|
|
|
|
}
|
|
|
|
|
params.contentmsg.show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if(params.content.isEmpty()){
|
|
|
|
|
// result=false;
|
|
|
|
|
// }
|
|
|
|
|
// if(params.content.html()!=params.textarea.html() || params.issubmit==true){
|
|
|
|
|
// params.textarea.html(params.content.html());
|
|
|
|
|
// params.content.sync();
|
|
|
|
|
// if(params.content.isEmpty() || /^\s*<\w*\s*\w*\=\"\w*\"\s*\w*\=\"\w*\:\s*\#\d*\;\s*\w*\-\w*\:\s*\w*\;\"\>[\u4e00-\u9fa5]*<\/\w*\>\s*$/.test(params.textarea.html())){
|
|
|
|
|
// params.contentmsg.html('内容不能为空');
|
|
|
|
|
// params.contentmsg.css({color:'#ff0000'});
|
|
|
|
|
// }else{
|
|
|
|
|
// params.contentmsg.html('填写正确');
|
|
|
|
|
// params.contentmsg.css({color:'#008000'});
|
|
|
|
|
// }
|
|
|
|
|
// params.contentmsg.show();
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
@ -314,7 +315,7 @@ function sd_create_editor_from_data(id){
|
|
|
|
|
params.contentmsg = $("span[nhname='contentmsg_" + id + "']", params.div_form);
|
|
|
|
|
params.toolbar_container = $("div[nhname='toolbar_container_" + id + "']", params.div_form);
|
|
|
|
|
params.cancel_btn = $("#new_message_cancel_btn_" + id);
|
|
|
|
|
params.submit_btn = $("#new_message_submit_btn_" + id);
|
|
|
|
|
params.submit_btn = $("#fnew_message_submit_btn_" + id);
|
|
|
|
|
params.height = height;
|
|
|
|
|
params.width = width;
|
|
|
|
|
if (params.textarea.data('init') == undefined) {
|
|
|
|
|