美文网首页
ajax请求

ajax请求

作者: 一个人的旅途_8365 | 来源:发表于2018-07-20 11:28 被阅读0次

    functiontest(){

          $.ajax({

    //提交数据的类型 POST GET

    type:"POST",

    //提交的网址

    url:"testLogin.aspx",

    //提交的数据

    data:{Name:"sanmao",Password:"sanmaoword"},

    //返回数据的格式

    datatype:"html",//"xml", "html", "script", "json", "jsonp", "text".

    //在请求之前调用的函数

    beforeSend:function(){$("#msg").html("logining");},

    //成功返回之后调用的函数           

    success:function(data){

    $("#msg").html(decodeURI(data));

                }  ,

    //调用执行后调用的函数

    complete:function(XMLHttpRequest, textStatus){

                  alert(XMLHttpRequest.responseText);

                  alert(textStatus);

    //HideLoading();

                },

    //调用出错执行的函数

    error:function(){

    //请求出错处理

                }       

            });

    相关文章

      网友评论

          本文标题:ajax请求

          本文链接:https://www.haomeiwen.com/subject/dkouuftx.html