我只是在做一个简单的 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'));
})