-
免费通话
24小时免费咨询
请输入您的联系电话,座机请加区号
- 免费通话
-
微信扫一扫

- 微信联系
- 返回顶部
//ajax提交表单
function subform(obj){
var url='/form/2/';
var tel=$(obj).find("#tel").val();
var reg = /^(1|0)[\d\-]+$/;
if (!reg.test(tel)) {
alert('电话号码错误!');
return false;
}
$.ajax({
type: 'POST',
url: url,
dataType: 'json',
data: {
tel: tel
},
success: function (response, status) {
if(response.code){
alert("您的来电已收到,我们会尽快联系您!");
$(obj)[0].reset();
}else{
alert(response.data);
}
},
error:function(xhr,status,error){
alert('返回数据异常!');
}
});
return false;
}