JQuery基础-- Ajax

基本格式:

get:

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

post:

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

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

上一篇:51nod_1236_序列求和 V3 _组合数学


下一篇:I.MX6 SHT20 Linux 驱动移植