如果我只有另一个网页的链接(从该网页获取 html 内容),我如何将解析的 html 内容插入到我的网页中。我正在使用 ajax 调用,我收到了错误,我编写了下面的代码。浏览器不是我想要的问题,就像在 Facebook 但不是在 php
<script>
jQuery.support.cors = true;
$.ajax({
type:"GET",
url:"http://www.hotscripts.com/forums/javascript/3875-how-read-web-page-content-variable.html",
dataType:"html",
crossDomain:true,
beforeSend: function(xhr)
{
xhr.overrideMimeType('text/plain; charset=UTF-8');
},
success:function(data) {
alert(data);
$("body").html(data);
},
error:function(errorStatus,xhr) {
alert("Error",errorStatus,xhr);
}
});
</script>