修改:在此处找到答案Ajax using https on an http page
如何绕过不同协议的相同原始策略?
我发现了这个: https://developer.mozilla.org/en/Same_origin_policy_for_JavaScript
它说http和https不是同一个域名。可能是像
这样的跨子域方法document.domain =“https://company.com”;
在来电者文件上?
当然,鉴于两个网站都在company.com。区别在于使用http和其他https。
或者我是否必须使用常用的跨域方法,如JSONP,代理和CORS?