我使用Ajax從另一個頁面中獲取信息,但不顯示此頁面。這裏是代碼JQuery:從ajax讀取html頁面提取內容
$.ajax({
url: 'another-page.html',
dataType: 'html',
success: function (data) {
//how to get the html title contained in data?
//how to get an element with ID contained in data?
}
});
我覺得這應該已經回答某處,但我無法找到它。對不起,如果這是重複的。如果已經有答案,我會刪除它。
非常感謝。
做一個'console.log(data)'並檢查返回的值,然後找到一種方法來獲得標題..可能html內容是在一個屬性中..所以你會做類似'$(data .propName).find(「title」)' – BeNdErR
看一看[這裏](http://stackoverflow.com/questions/20007721/parsing-returned-html-from-jqu ery-ajax-request) – BeNdErR