官方的说明是,load() 方法通过 AJAX 请求从服务器加载数据,并把返回的数据放置到指定的元素中。

    $("#content").load("http://www.splaybow.com/test.html");

上面这段代码是,将使用AJAX去获取http://www.splaybow.com/test.html页面的源代码,并将这个内容作为id为content这个元素的内容。

load()方法的完整语法如下:

load(url,data,function(response,status,xhr))

说明:

url,要get的地址

function(response,status,xhr),这个太常见了,ajax的回调函数。

03-15 02:02