jquery中页面Ajax方法$.load的功能使用介绍

load语法

$(".selector").load("url",function(responseText,statusText,xmlhttprequest));

可以做到加载一个页面的时候,如果发生错误,根据statusText给出的状态,显示对应的提示,这对用户来说非常重要。

例子,load post

代码如下

代码如下:
点击我
内容加载中

$("#btnAjaxPost").click(function(event) { var username = $("#username").val(); //发送Post请求 $("#divResult").load("$(www.jb51.cc){ctx}/jqueryLoad",{ "username": username}); });

例子,load get方法

代码如下

代码如下:
内容加载中