发布网友 发布时间:2022-04-24 14:20
共1个回答
热心网友 时间:2022-04-26 13:43
var ServiceFeatures = escape(editor.html());
$.ajax({
url: "/XXX/XXXX",
data: { id: ServiceFeatures},
type: "post",
dataType: "json",
success: function (res) {
if (res.isOk) {
queryCostRecord();
}
},
error: function (res) {
}
});