- $.ajax()
$.ajax({
url:' 路径 ',//-->读取数据的地址/路径
type:' get/post',//--->传输的方式
async:true,//--->是否异步
success:function(res){
//---->数据读取成功后,返回的数据
},error:function(msg){
//--->失败后,返回 的数据
}
})
- $.get()
$.get(' url ' , {} ,function(ret){} ,' json ')
- $.post()
$.post(' url ' , {} ,function(ret){} ,' json ')
- $.getJSON()
$.getJSON(' url ' , function(ret){} )
网友评论