$.post

$.post

url:发送请求地址。

data:待发送 Key/value 参数。

callback:发送成功时回调函数。

type:返回内容格式,xml, html, script, json, text, _default。

$.post(
    "test.php", 
    { "func": "getNameAndTime" },
    function(data){
     alert(data.name); // John
     console.log(data.time); //  2pm
    },
    "json"
);

 

$.post("test.php", { name: "John", time: "2pm" },
   function(data){
         process(data);
   }, "xml");

 

posted @ 2015-07-29 17:42  坠落鱼  阅读(333)  评论(0编辑  收藏  举报