在客户端加载外部脚本
加载文件时我使用此方法:
$("<脚本/>", { “类”:“测试”, "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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.