我只是做一個簡單的ajax請求來獲取文件的內容,但是當我試圖抓取實際的<body>
時,它始終不會返回任何內容。
jQuery.ajax(location).done(function(response) {
// RETURNS []
console.log(jQuery(response).find('body'));
// <body class="html ...">
// RETURNS []
console.log(jQuery(response).find('.html'));
// When I try to get any other div it just works
// RETURNS THE DIV
console.log(jQuery(response).find('#header'));
})
響應包含的實際數據是什麼? – Jeff
只是從一個網站的完整html'
...'所以源代碼 –是'位置'在你的網頁相同的域? – jfriend00