在客户端加载外部脚本

发布于 2024-12-25 19:18:19 字数 270 浏览 1 评论 0原文

加载文件时我使用此方法:

$("<脚本/>", { “类”:“测试”, "src": 'http://www.externalSite.com/js/xxx.js' }).appendTo("头");

文件加载正常,没有问题。

我尝试在此文件中进行 ajax 调用以从服务器数据库获取一些数据, 然后简单地提醒结果。

当我从同一服务器拨打电话时效果很好, 但是当我尝试从外部服务器调用此脚本时,它会警告空字符串

I'm using this method when file is loaded:


$("<script/>", {
"class": "test",
"src": 'http://www.externalSite.com/js/xxx.js'
}).appendTo("head");

the file is loaded fine and no problem with it.

Im try to make an ajax call in this file to get some data from the server DB,
and then simply alert the result.

When Im making the call from the same server it works good,
but when Im trying to call this script from an outside server it alerts an empty string

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

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

发布评论

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

评论(1

怀念你的温柔 2025-01-01 19:18:19

Ajax 不能用于从另一台服务器获取数据,这称为同源策略,主机名和端口号必须相同才能发出请求。

Ajax can't be used to get data from another server, it's called the same origin policy, the hostname and port number must be identical to be able to make a request.

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