美文网首页
jQuery - AJAX get() 和 post() 方法

jQuery - AJAX get() 和 post() 方法

作者: wangzaiplus | 来源:发表于2017-09-04 20:15 被阅读0次

文章参考自:链接

1. jQuery $.get() 方法

$.get(URL,callback);
示例:
$(document).ready(function(){
   $("button").click(function(){
       $.get("/try/ajax/demo_test.php",function(data,status){
           alert("数据: " + data + "\n状态: " + status);
       });
   });
});

2. jQuery $.post() 方法

$.post(URL,data,callback);
示例:
$(document).ready(function(){
    $("button").click(function(){
        $.post("/try/ajax/demo_test_post.php",{
            name:"菜鸟教程",
            url:"http://www.runoob.com"
        },
        function(data,status){
            alert("数据: \n" + data + "\n状态: " + status);
        });
    });
});

相关文章

网友评论

      本文标题:jQuery - AJAX get() 和 post() 方法

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