我想从跨域 URL 中获取 HTML 响应页面。
为此,我使用 ajax 请求,
$.ajax({
type: 'GET',
url: "http://wcidevapps.com/salescentral/idisk/0001000383/iDisk",
dataType: "json",
success: function (response) {
$(response).find('li a').each(function () {
listHref.push($(this).attr('href'));
});
}
});
但是在请求之后它没有回复任何结果。