Firefox作為一款瀏覽器,擁有豐富的擴展功能。其中可以使用Jquery的load方法,輕松向頁面中加載指定內(nèi)容。
$(document).ready(function() {
$("#div1").load("demo_test.txt");
});
上面這個例子,演示了如何使用load方法將demo_test.txt中的內(nèi)容加載到一個指定的div元素中。
如果需要在加載時使用一些參數(shù),可以通過load的第二個參數(shù)進行設(shè)置。
// 加載一個頁面,并只返回特定的元素
$("#result").load("ajax/test.html #container");
// 使用POST方法向服務(wù)器發(fā)送數(shù)據(jù)
$.post("demo_test_post.asp",
{
name: "Donald Duck",
city: "Duckburg"
},
function(data, status){
alert("Data: " + data + "\nStatus: " + status);
});
需要注意的是,如果在Firefox中遇到了load方法無法正常工作的情況,可能是因為跨域訪問被瀏覽器禁止。可以嘗試使用JSONP來繞過這個限制。