gpt4 book ai didi

javascript - 如何使用 PhantomJS 获取网站的 HTML 源代码

转载 作者:数据小太阳 更新时间:2023-10-29 03:49:20 24 4
gpt4 key购买 nike

下面是一个 PhantomJS 的例子,它通过外部网页的 DOM id 获取一些元素:

var page = require('webpage').create();
console.log('The default user agent is ' + page.settings.userAgent);
page.settings.userAgent = 'SpecialAgent';
page.open('http://www.httpuseragent.org', function(status) {
if (status !== 'success') {
console.log('Unable to access network');
} else {
var ua = page.evaluate(function() {
return document.getElementById('myagent').textContent;
});
console.log(ua);
}
phantom.exit();
});

我想获取网页的整个 HTML 源代码……我该怎么做?

最佳答案

您所要做的就是使用page.content

var page = require('webpage').create();
page.onError = function(msg, trace) {
//prevent js errors from showing in page.content
return;
};
page.open('http://www.httpuseragent.org', function () {
console.log(page.content); //page source
phantom.exit();
});

关于javascript - 如何使用 PhantomJS 获取网站的 HTML 源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20173928/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com