id: $('.get_user_c_classid').val(), c_infoid: $('.get_user_c_infoid').val(), phone: $('.get_price_phone').val(), need: $('.get_price_need').val(), } $.ajax({ //请求方式 type: "POST", //请求的媒体类型 //contentType: "application/text;charset=UTF-8", //请求地址 url: "/e/DoInfo/user_ecms.php?enews=MAddInfo", //数据,json字符串 data: list, dataType: "json", //请求成功 success: function (result) { //alert(JSON.stringify(result)) if (result.code === 0) { alert(result.msg) setTimeout(function () { $('.phone-input-panel').css('display', 'none') $('.price-input-panel').css('display', 'none') $('.get_price_phone').val('') $('.get_price_need').val('') }, 500) } else { alert(result.msg) } }, //请求失败,包含具体的错误信息 error: function (e) { alert(e.responseText) } }); }) })