jquery的$post方法 请问

WBOY
Release: 2016-06-13 12:16:40
Original
873 people have browsed it

jquery的$post方法 请教
想让前台把文本框中的手机号提交到后台,然后调后台方法给手机发送短信

function sendMessage() {
   curCount = count;
  //设置button效果,开始计时
     $("#btnSendCode").attr("disabled", "true");
     $("#btnSendCode").val("请在" + curCount + "秒内输入验证码");
     InterValObj = window.setInterval(SetRemainTime, 1000); //启动计时器,1秒执行一次
    //向后台发送处理数据
     alert("aaaaaaaaa");
     $.ajax({
         type: "POST", //用POST方式传输
         dataType: "text", //数据格式:JSON
         url: 'http://www.xxxxx.com:81/member/send_code', //目标地址
         data: "dealType=" + dealType +"&uid=" + uid + "&code=" + code,//这行 我试着去了
         error: function (XMLHttpRequest, textStatus, errorThrown) { },
         success: function (msg){ }
     });
}
这样写有问题吗?

后台方法没有执行,没有跳转, 我是想让前台把文本框中的手机号提交到后台,然后调后台方法给手机发送短信
public function send_code(){

echo '<script>alert("发送!");location.href="www.baidu.com";</script>';


}


哪位前辈有示例啊? 这个$post不会用。  谢谢

------解决思路----------------------
确认 http://www.xxxxx.com:81/member/send_code 不是跨域
------解决思路----------------------
error: function (XMLHttpRequest, textStatus, errorThrown) {alert(textStatus);},
success: function (msg){alert('OK');}
弹出什么?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template