是否可以将网站的一部分嵌入到我的网站中?
我希望“窃取”网站的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
作为 @jini 的回答,您可以将该脚本放入文件
gate.php
中,并仅使用 jQuery 加载内容:以及可能的
gateway.php
:请确保清理您的输入!
As an addition to @jini's answer, you could make that script into a file,
gate.php
, and load things using only jQuery:And a possible
gateway.php
:Just make sure to sanitize your input!
非常简单:
您可以使用 file_get_contents() 或 http://simplehtmldom.sourceforge.net/manual.htm 获取所有 HTML 页面,然后使用 javascript 或 Jquery 获取 DIV。
一个例子是:
然后您可以解析 $homepage 变量。
或者
我会做的是:
http://simplehtmldom.sourceforge.net/manual.htm
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:
Then you can parse the $homepage variable.
OR
What I would do is:
http://simplehtmldom.sourceforge.net/manual.htm
您可以使用 yahoo yql 进行数据抓取,正是为此目的而制作的。
http://developer.yahoo.com/yql/guide/yql -code-examples.html#yql_html_scraper
你可以使用 Xpath
ex
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
雅虎管道是开始使用“获取页面”模块的好地方。之后,就需要使用正则表达式模块来修改或更改您不想要的 html。
嵌入可以通过两种方式完成:
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:
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.