当前位置:Gxlcms > JavaScript > jquery中页面Ajax方法$.load的功能使用介绍_jquery

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

时间:2021-07-01 10:21:17 帮助过:8人阅读

load语法

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

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

例子,load post

代码如下

代码如下:

点击我

内容加载中

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


例子,load get方法

代码如下

代码如下:

内容加载中