$(function () { // var url = "https://wuzhic.114618.com/index.php?m=submit"; var url = "/index.php?m=submit"; var data = { fType: 1 } function getFields() { //个人信息 data.name = $.trim($("#name").val()); data.sex = $.trim($("#sex").val()); data.age = $.trim($("#age").val()); data.phone = $.trim($("#phone").val()); //用药信息 data.drug_name = $.trim($("#drug_name").val()); data.grug_number = $.trim($("#grug_number").val()); data.dosage = $.trim($("#dosage").val()); data.disease = $.trim($("#disease").val()); data.drug_startTime = $.trim($("#drug_startTime").val()); data.reaction = $.trim($("#reaction").val()); //过程描述 data.reaction_con = $.trim($("#reaction_con").val()); //验证码 data.checkcode = $("#checkcode").val(); console.log(data) } $('#form').validate({ debug: true, onsubmit: true, submitHandler: function () { getFields() $.ajax({ url: url, type: "post", dataType: "json", data: data, success: function (msg) { // console.log(msg) if (msg.code == 1) { $("#form")[0].reset(); alert("提交成功") } else { alert(msg.data) } } }); }, }); })