问题原因是增加调用百度编辑器,而JS判断没有修改
解决方法:
打开template/问答系统/详情页.html
找到
if ($("#content").val()==''){
$.dialog.alert('请输入回答内容!',function(){
$("#content").focus();
});
return false;
}
改为:
if (editor.hasContents()==false){
$.dialog.alert('请输入回答内容!',function(){
editor.focus();
});
return false;
}