欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-12 11:19:12
load语法 $(".selector").load("url", function(responsetext, statustext,...

load语法

$(".selector").load("url", function(responsetext, statustext, xmlhttprequest));

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

例子,load post

代码如下

代码如下:


<p id=btnajaxpost>点击我</p>
<p id=presult>内容加载中</p>

 

$("#btnajaxpost").click(function(event)
{
var username = $("#username").val();
//发送post请求
$("#presult").load("$(www.cnblogs.com){ctx}/jqueryload", { "username": username});
});


例子,load get方法

 

代码如下

代码如下:


<p id=in_head>内容加载中</head>
<script language="javascript">$('#in_head').load('ajaxlogin.php?cityid=1208');</script>


ajax方法$.load乱码

 

一般引起load乱码是由于二者页面编码不致影起的,处理方法是

1.我的显示页面index.html的编码是uft-8的;
2.我的静态页面foot.html的编码是uft-8的;

$("#index_foot_container").load("foot.html");