如何使用jQuery显式地创建一个AJAX HTTPS GET请求?我正在努力做以下事情.
在https页面上,我有一行代码$.get(“/ resource”),但是我收到以下错误
在https页面上,我有一行代码$.get(“/ resource”),但是我收到以下错误
XMLHttpRequest cannot load http://www.site.com/resource. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://www.site.com' is therefore not allowed access.
如果相对资源来自https页面,为什么AJAX调用尝试使用HTTP协议访问该页面?如果$.get(url)方法默认执行此操作,那么如何使用jQuery来执行显式的HTTPS GET请求?另一个在http://forum.jquery.com/topic/jquery-get-ajax-call-on-http-page-to-https-on-same-domain年有类似问题的人无法解决.
jQuery版本是1.7.2