将多个网页的抓取数据合并到单个页面中

发布于 2024-11-03 12:36:58 字数 361 浏览 0 评论 0原文

我想创建一个网页,以类似于 IE Web Slice、WebChunks、PageSlices 或 其他网页切片可以

它可以是一个网站(或者只是本地的 html 页面),也可以是充当聚合器的桌面应用程序。

这样做的方法是什么? Java、Javascript、PHP、桌面应用程序还是其他? 另外,您能否提供一些抓取已知 ID << 的单个 div 的参考? div id="这就是它">来自几个不同的网页并将它们呈现在一个片段中(作为网页或应用程序)?

提前致谢。

I want to create a webpage which aggregates data from several webpages, in a similar manner to what the IE Web Slice, WebChunks, PageSlices or other web slices does.

It can be either a website (or just html page, locally) or desktop application which works as kind of an aggregator.

What is the way of doing so? Java, Javascript, PHP, desktop application or other?
In addition, can you provide with some reference of scraping single div with known ID < div id="ThisIsIt"> from several different webpages and presenting them in one piece (as web page, or application)?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光①夏 2024-11-10 12:36:58

在带有 DOMDocument 类的 php 中,它将是

$url='....bla bla';
$out=file_get_contents($url);
$dom=new DOMDocument();
@$dom->loadHTML($out);

$div=$dom->getElementById('yourid');
$value=$div->nodeValue;

in php with DOMDocument class it will be

$url='....bla bla';
$out=file_get_contents($url);
$dom=new DOMDocument();
@$dom->loadHTML($out);

$div=$dom->getElementById('yourid');
$value=$div->nodeValue;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文