久艹网,亚洲一日韩欧美中文字幕2019,国产欧美日韩精品专区黑人,一区二区三区久久99

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

Posts Tagged With: ajax

Jquery常用的ajax操作

2011/08/14 at 02:34 » Comments (417)

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