美文网首页
ajax提交 post和get

ajax提交 post和get

作者: 鲸随浪起 | 来源:发表于2019-12-02 15:41 被阅读0次

    ajax

    $.ajax({
          type: "GET",
          url: "url.html",
          data: {"key":"value",.....},
          dataType: "json",
          success: function(data){},
          error : function(){}
    });
    

    POST

    $.post(url,data, function(msg)         {
          //msg返回值,可以为json或者字符串
    });
    

    GET

     $.get(url,data, function(msg)         {
         //msg返回值,可以为json或者字符串
    });
    

    相关文章

      网友评论

          本文标题:ajax提交 post和get

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