从客户端获取页面内容(跨域)
有没有一种方法可以从客户端仅使用 JS(或其他脚本语言)而不使用服务器端脚本来获取页面内容(跨域)?
Is there a way to get page content (cross domain) with just usage of JS (or some other scripting language) from client side without usage of server side script ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是公共页面,您可以使用 YQL 并使其传递 jsonp结果是一个脚本标签,但除此之外我们正在谈论XSS
If it is a public page you can use YQL and make it deliver jsonp results in a script tag, but other than that we are talking XSS here, and that is a no-no.
如果您可以控制两个页面的源,则可以使用 postMessage 在一个页面中将标记发送到另一页面。
If you have control of the source of both pages, you can use postMessage in one page to send markup to the other.