使用 JavaScript 从 Google 搜索中提取任何链接

发布于 2024-11-24 02:44:06 字数 1400 浏览 0 评论 0原文

可能的重复:
如何使用 javascript 从 iframe 中提取链接

http:// www.google.cl/search?q=food 源代码:

<html><head>...<img src="GOOGLE LOGO">...
...
<a href="http://www.SEARCH RESULT 1.com"> RESULT FOR FOOD 1</a>
<a href="http://www.SEARCH RESULT 2.net"> RESULT FOR FOOD 2</a>
<a href="http://www.SEARCH RESULT 3.org"> RESULT FOR FOOD 3</a>
<a href="http://www.SEARCH RESULT 4.com"> RESULT FOR FOOD 4</a>
<a href="http://www.SEARCH RESULT 5.us"> RESULT FOR FOOD 5</a>
...
</html>

experimental_test.html 输出:

google的第三个搜索结果是:


http://www.SEARCH 结果 3.org

Google 的第五个搜索结果是:


http://www.SEARCH 结果 5.us

experimental_test.html SUPPOSED源代码:

<iframe style="display:none;" src="http://www.google.cl/search?q=food">
<script>
...ge
</script>

换句话说,我想提取特定的链接, 就像搜索中的第二个链接一样。 不想使用 PHP

Possible Duplicate:
How extract links from iframe using javascript

http://www.google.cl/search?q=food SOURCE CODE:

<html><head>...<img src="GOOGLE LOGO">...
...
<a href="http://www.SEARCH RESULT 1.com"> RESULT FOR FOOD 1</a>
<a href="http://www.SEARCH RESULT 2.net"> RESULT FOR FOOD 2</a>
<a href="http://www.SEARCH RESULT 3.org"> RESULT FOR FOOD 3</a>
<a href="http://www.SEARCH RESULT 4.com"> RESULT FOR FOOD 4</a>
<a href="http://www.SEARCH RESULT 5.us"> RESULT FOR FOOD 5</a>
...
</html>

experimental_test.html OUTPUT:

the third search result from google is:

http://www.SEARCH RESULT 3.org

the fifth search result from google is:

http://www.SEARCH RESULT 5.us

experimental_test.html SUPPOSED source code:

<iframe style="display:none;" src="http://www.google.cl/search?q=food">
<script>
...ge
</script>

In other words, I want to extract the specific links,
like the second link in the search.
Without wanting to use PHP

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

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

发布评论

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

评论(2

破晓 2024-12-01 02:44:10

简而言之,你不能也不应该。

您不能,因为您不允许使用脚本来操纵来自其他网站的数据。

你不应该这么做,因为抓取搜索结果违反了 Google 的服务条款。您应该使用自定义搜索 API

In short you can't and you shouldn't.

You can't because you're not allowed to use your script to manipulate data from other website.

You shouldn't because it's against Google's TOS to scrape the search results. You should use the Custom Search API.

酒废 2024-12-01 02:44:09

您可能无法提取某些内容,因为您无权访问 iframe 内的文档。

You may not extract something, because you don't have any access to the document inside the iframe.

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