load文法
$(".selector").load("url", function(responseText, statusText, xmlhttprequest));
可以做到載入一個頁面的時候,如果發生錯誤,根據statusText給出的狀態,顯示對應的提示,這對使用者來說非常重要。
例,load post
程式碼如下
$("#btnAjaxPost").click(function(event)
{
var username = $("#username").val();
//發送Post請求
$("#divResult").load("$(www.jb51.net){ctx}/jqueryLoad", { "username": username});
});
程式碼如下
一般引起load亂碼是由於二者頁編碼不致影起的,處理方法是
1.我的顯示頁index.html的編碼是uft-8的;
2.我的靜態頁foot.html的編碼是uft-8的;
$("#index_foot_container").load("foot.html");