是否可以将网站的一部分嵌入到我的网站中?

发布于 2024-11-02 16:41:46 字数 63 浏览 1 评论 0原文

我希望“窃取”网站的 div 并将其嵌入到我的网站上(不使用 iframe)。谁能告诉我具体的方法是什么?谢谢。

I wish to 'steal' a div of a web site and embed it on my site (without using iframe). Can anyone tell me what is the exact way to do that? Thanks.

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

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

发布评论

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

评论(4

绅刃 2024-11-09 16:41:46

作为 @jini 的回答,您可以将该脚本放入文件 gate.php 中,并仅使用 jQuery 加载内容:

$('#container').load('gateway.php?url=foo.com #target_div');

以及可能的 gateway.php

<?php    
print file_get_contents($_GET['url']);    
?>

请确保清理您的输入!

As an addition to @jini's answer, you could make that script into a file, gate.php, and load things using only jQuery:

$('#container').load('gateway.php?url=foo.com #target_div');

And a possible gateway.php:

<?php    
print file_get_contents($_GET['url']);    
?>

Just make sure to sanitize your input!

万劫不复 2024-11-09 16:41:46

非常简单:

您可以使用 file_get_contents() 或 http://simplehtmldom.sourceforge.net/manual.htm 获取所有 HTML 页面,然后使用 javascript 或 Jquery 获取 DIV。

一个例子是:

$homepage = file_get_contents('http://www.somesite.com/');

然后您可以解析 $homepage 变量。

或者

我会做的是:

http://simplehtmldom.sourceforge.net/manual.htm

$html = file_get_html('http://www.google.com/');
$ret = $html->find('div[id=foo]'); 

Pretty Simple:

You can use file_get_contents() or http://simplehtmldom.sourceforge.net/manual.htm to get the page as all the HTML and then get the DIV using javascript or Jquery.

An example would be:

$homepage = file_get_contents('http://www.somesite.com/');

Then you can parse the $homepage variable.

OR

What I would do is:

http://simplehtmldom.sourceforge.net/manual.htm

$html = file_get_html('http://www.google.com/');
$ret = $html->find('div[id=foo]'); 
尹雨沫 2024-11-09 16:41:46

您可以使用 yahoo yql 进行数据抓取,正是为此目的而制作的。

http://developer.yahoo.com/yql/guide/yql -code-examples.html#yql_html_scraper

你可以使用 Xpath

ex

select * from html where url="http://finance.yahoo.com/q?s={ticker_sym}" and xpath='//div[@id="yfi_headlines"]/div[2]/ul/li/a'

you can use yahoo yql with data scraping, exactly made for these purpose.

http://developer.yahoo.com/yql/guide/yql-code-examples.html#yql_html_scraper

you can use Xpath

ex

select * from html where url="http://finance.yahoo.com/q?s={ticker_sym}" and xpath='//div[@id="yfi_headlines"]/div[2]/ul/li/a'
紫竹語嫣☆ 2024-11-09 16:41:46

雅虎管道是开始使用“获取页面”模块的好地方。之后,就需要使用正则表达式模块来修改或更改您不想要的 html。

嵌入可以通过两种方式完成:

  1. 使用管道回调功能在页面内运行 javascript,将页面的静态/原始内容部分交换为管道提供的内容。

2.Yahoo Pipes 有一个模块,可以将数据(以 JSON 格式)发布到合适的输入处理页面,该页面将存储信息以包含在任何需要数据的页面中。

此操作的一个出色(且完全合法)的示例可以在 http://bishop.comxa.com 中查看

好好询问,他们甚至可能会给你一些建议。

Yahoo pipes is a good place to start using the 'fetch page' module. After that it'a a case of rubbing or changing out the html that you don't want with the regex module.

Embedding can be done in two ways:

  1. using the pipes callback feature to run javascript inside the page that swaps the part of the pages static / original content to that provided by the pipe.

2.Yahoo pipes have a module that will POST data (in JSON format) to a suitable input processing page that will store the information for inclusion in any page that requires the data.

A brilliant (and wholly legal) example of this action can be seen over at http://bishop.comxa.com

Ask nicely they may even give you some pointers.

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