简单理解为:最基本的是ajax,get.post是对ajax是封装,其中GET方式传送数据量小,处理效率高,安全性低,会被缓存,而POST反之。
$get/$post格式:
$get(url,{参数1:值1,参数2:值2。。。},function(data){。。。});
$post(url,function(data){。。。})
$ajax格式:
$ajax{type="get/post,url=“aa.do",dataType="json/...",async="true",success:function(data){。。。},error:function(data){。。。}}
原文链接:https://www.f2er.com/ajax/164162.html