中山php|最优网络中山做网站 中山php建站

最优良人

2011/08/14 at 02:34

Jquery常用的ajax操作

Jquery异步加载一个页面是如此简单:

$.ajax({ url: "/testl/index.html", cache: false, success: function(html){

$("#test").append(html);

}

});

或者更简单的:$("#test").load("/test/index.html");

以 POST 形式发送附加参数并在成功时显示信息。
jQuery 代码:
$("#feeds").load("feeds.php", {limit: 25}, function(){ alert("The last 25 entries in the feed have been loaded"); });
载入并执行一个 JavaScript 文件:加载并执行 test.js ,成功后显示信息。jQuery 代码: $.getScript("test.js", function(){ alert("Script loaded and executed.");});

标签:, ,
-