$("#elementID").html();
。对于更复杂的需求,可以使用Puppeteer等库来模拟浏览器环境并执行JavaScript代码。JavaScript提供了丰富的工具和方法来获取和操作网页源码。
要使用JavaScript获取网页源码,可以使用以下方法:
1、使用XMLHttpRequest
对象(适用于旧版浏览器):
var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); } }; xhr.open("GET", "https://www.example.com", true); xhr.send();
2、使用fetch
API(适用于现代浏览器):
fetch('https://www.example.com') .then(response => response.text()) .then(html => console.log(html)) .catch(error => console.error('Error fetching the page:', error));
3、使用document.documentElement.outerHTML
(仅适用于当前页面):
var html = document.documentElement.outerHTML; console.log(html);
注意:由于跨域限制,你可能无法直接获取其他域名下的网页源码,在这种情况下,你需要使用服务器端代码或者CORS代理来获取网页源码。