如何将外部网页的某个div加载到位于不同域的另一个网页上
如何将网页的某个 div 加载到位于不同域的另一个网页上。
我已经尝试过这个:
<div id="m"></div>
<script>$('#m').load('http://something.com #divname');</script>
但是当要加载的页面位于另一个域上时它不起作用
How can you load a certain div of a webpage on another webpage that resides on a different domain.
I have tried this:
<div id="m"></div>
<script>$('#m').load('http://something.com #divname');</script>
But it doesnt work when the page to load is on another domain
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个 jQuery 模组 可以让您做到这一点。 看看!它使用 YQL 来允许跨域请求。
收到请求后,它会显示为 JSON,您可以通过 ajax 解析它。这是我使用它的一种方式:
但我认为您也可以简单地使用 .load 来完成此操作,如该链接所示。
This mod for jQuery allows you to do just that. Check it out! It uses YQL to allow cross domain requests.
Once you get the request it appears as JSON which you can parse out through ajax. This is one way I have used it :
But I think you can also simply do it using the .load as is shown on that link.
您需要在服务器端使用一种称为网络抓取的技术。
几乎所有服务器端编程语言都有一个库来执行此操作。如果您熟悉 JavaScript,则可以使用 Node.js。一旦您获得了所需的
div
并可用,您就可以使用 Ajax 将其提供给客户端,这也可以使用 Node.js 轻松完成。有关更多信息,请参阅这篇文章。
You need to use a technique called web scraping on your server side.
Almost all server side programming languages have a library to do this. If you are familiar with JavaScript you can use node.js. Once you have the
div
you require scraped and available, you can serve it to the client using Ajax which can also be done easily with node.js.For more, look at this article.