$(function () { // var url = "https://wuzhic.114618.com/index.php?m=submit"; var url = "/index.php?m=submit"; var data = { fType: 3 } function getFields() { data.name = $.trim($("#name").val()); data.tel = $.trim($("#tel").val()); data.event = $.trim($("#event").val()); data.content = $.trim($("#content").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) } } }); }, }); })