jQuery ajax方法
作者:互联网
jQuery AJAX 方法
jQuery load() 方法是简单强大的AJAX方法。从服务器加载数据,并将数据显示在被选中元素中。
语法:
$(selector).load(URL,data,callback);
必需URL参数规定您希望加载的URL
可选的打data参数规定与请求一同发送的查询字符串键值对集合
可选的callaback参数是load()方法完成后所执行的函数名称。
实例:
$("button").click(function(){ $("#div1").load("demo_test.txt",function(responseTxt,statusTxt,xhr){ if(statusTxt=="success") alert("外部内容加载成功!"); if(statusTxt=="error") alert("Error: "+xhr.status+": "+xhr.statusText); }); });
ajax相关方法很多,我们可以根据自己的实际情况去选择合适的方法使用,详情可以查看W3C的ajax参考手册。
http://www.w3school.com.cn/jquery/jquery_ref_ajax.asp
标签:jQuery,load,statusTxt,URL,xhr,ajax,方法 来源: https://blog.csdn.net/qq_39043762/article/details/90315136