jQuery封装的ajax操作
jQuery中ajax请求有三种操作方式$.get() $.post() $.ajax()
get和post(是对$.ajax的封装)
//不传递数据 $.get("./16.php",function(msg){ alert(msg); }); //给服务器传递数据 $.get("./16.php",{name:‘tom‘,age:23},function(msg){ alert(msg); }); //用法与get方法类似 $.post("./16.php",{},function(){});
$.ajax是jQuery底层的ajax方法
$.ajax({ url:"./16.php", data:"name=tom&addr=beijing&age=23", dataType:‘text‘, async:false, type:‘post‘, success:function(msg){ //ajax请求成功后要执行这个的代码 alert(msg); } });
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。