Jquery異步加載一個(gè)頁(yè)面是如此簡(jiǎn)單:
$.ajax({ url: "/testl/index.html", cache: false, success: function(html){
$("#test").append(html);
}
});
或者更簡(jiǎn)單的:$("#test").load("/test/index.html");
以 POST 形式發(fā)送附加參數(shù)并在成功時(shí)顯示信息。
jQuery 代碼:
$("#feeds").load("feeds.php", {limit: 25}, function(){ alert("The last 25 entries in the feed have been loaded"); });
載入并執(zhí)行一個(gè) JavaScript 文件:加載并執(zhí)行 test.js ,成功后顯示信息。jQuery 代碼: $.getScript("test.js", function(){ alert("Script loaded and executed.");});