将另一个域中的外部网站的特定 div 加载到 iframe 中
我已经看到当网站位于同一域时有几种方法可以做到这一点,但这不是我的情况,因为我更像是一名设计师而不是程序员,所以我会尽可能要求最简单、最直接的过程。
I've seen there are several ways to do it WHEN the websites are in the same domain, but this is not my case and, since I'm much more a designer than a programmer, I'd go as far as to ask for the simplest, most straight-forward process.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是使用服务器端脚本来解析远程站点,从而在客户端出现任何 JavaScript 问题时优雅地降级,并在解析远程站点时让您控制环境。
例如,您可以编写一个 php 脚本来仅返回相关的 div,然后将 iframe 直接指向它。
您考虑使用什么语言/框架?
The best way to do this would be to use a server-side script to parse the remote site, thereby degrading gracefully if there's any Javascript problems on the client-side and giving you control over the environment when you're parsing the remote site.
You could, e.g. write a php script to return just the relevant div, and then point the iframe straight at that.
What language / framework were you thinking of using?