javascript从url获取html内容(页面代码)

时间:2018-05-03 10:14:58

标签: javascript html xml http xmlhttprequest

我希望使用javascript从网址获取网页代码或网页来源,但我的代码无效。我需要页面源,然后获取元素内部文本
有人建议吗?



<html>
<head>

<script type="text/javascript">
function loadXMLDoc()
{

var xhr = new XMLHttpRequest();
xhr.onload = function() {
  console.log(this.responseXML.title);
}
xhr.open("GET", "http://www.bbc.com/");
xhr.responseType = "document";
xhr.send();
document.getElementById("myDiv").innerHTML = xhr.responseText;
	 
};
	
</script>

</head>
<body>


<div id="myDiv"><h2>text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>

</body>
</html>
&#13;
&#13;
&#13;

0 个答案:

没有答案