使用Uediter的时候出现提交表单错误
ajax 提交表单时
初步判断:拼接参数时style属性中存在&等特殊符号,存入时字段丢失
结果:js进行from post提交表单
若还失败 则
js replace All 所有特殊字符为指定字符串
question=question.replace(/\&/g,"999999999999").replace(/\#/g,"999999999998");
answer=answer.replace(/\&/g,"999999999999").replace(/\#/g,"999999999998");