将外部 html 加载到 JavaScript 中的字符串

发布于 2024-10-19 11:28:06 字数 161 浏览 1 评论 0原文

是否可以将 google.com 等加载到 JavaScript 变量中?

var html = "the html of google.com"

这可能吗?

更新: 那么在空气应用中呢?

Is it possible to load for example google.com to a javascript variable?

var html = "the html of google.com"

Is this possible?

Update:
What about in an air application?

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

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

发布评论

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

评论(2

夕色琉璃 2024-10-26 11:28:06

除非您从服务器发送源代码,否则不会。

从 JavaScript 来看,它将违反同源政策。您可以发送请求,然后您将收到响应,但响应将为空。

Not unless you send the source from the server.

From javascript, it will violate the Same Origin Policy. You can send the request, and you'll get a response, but the response will be empty.

破晓 2024-10-26 11:28:06

如果它是您所在域中的页面,那么是的。否则,目标域会提供一些特殊的 URL,根据某种形式的特殊请求向您发送页面。

您始终可以让自己的服务器获取页面并将其转发给您的客户端。

If it's a page in the same domain you're in, then yes. Otherwise, not without some special URL provided by the target domain that sends you pages based on some form of special request.

You can always have your own server fetch the page and forward it to your client.

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