JQuery基础-- Ajax

基本格式:

get:

$.get("url",data,function(res){   #.....   })

post:

$.post("url",data,function(res){   #...   })

 

其中,data为json格式。后面的function是指成功请求,并且获得响应结果(res)之后,进行的操作。

posted @ 2018-01-18 12:02  寻觅beyond  阅读(178)  评论(0编辑  收藏  举报
返回顶部