使用ajax向服务器发送请求

时间:2014-09-15 05:55:56

标签: jquery ajax

您好我正在尝试发送请求,并希望按下按钮点击我的网址,但它无法正常工作

更新代码

    <script>
$(function(){

      $("#submit").click(function(){
var sms="url/sendmessage.php?user=""&password="&mobile=7828208357&message=hello&sender=&type=3INFORM";

    $.ajax({        
        url: sms ,
        data: "message=",
        type: 'POST',
        success: function (resp) {
            alert(resp);
        },
        error: function(e){
            alert('Error: '+e);
        }  
    });
      });

});
</script>

<input type="submit" value="submit" name="submit" id="submit">

这里给出的网址我想点击按钮点击我怎样才能实现这个

任何帮助将不胜感激

1 个答案:

答案 0 :(得分:0)

var sms="url/sendmessage.php?user=""&password="&mobile=7828208357&message=hello&sender=&type=3INFORM";

在你的代码的这一部分你应该转义引号,如:

var sms="url/sendmessage.php?user=\"\"&password=\"&mobile=7828208357&message=hello&sender=&type=3INFORM";