当我尝试进行ajax调用时,在下面的chrome中出现了错误.
XMLHttpRequest cannot load javascript:;. Cross origin requests are
only supported for protocol schemes: http, data, chrome,
chrome-extension, https, chrome-extension-resource.
这是代码:
$.ajax({
type: "POST",
data: {pvalue : pid},
cache: false,
url: "xxx.in/yy/ajax.PHP",
success: function(data)
{
$modal.find('.edit-content').html(data);
}
解决方法:
所有对该特定错误消息的研究都表明,主机网页未通过http:// URL加载,并且可能是文件URL.默认情况下,浏览器将不允许来自文件URL的跨源请求.
如果要使用ajax请求,则需要通过Web服务器而不是文件系统加载Web页面.
以下是有关该特定错误的其他一些问题和答案,所有这些均指向用于加载页面的错误URL类型.
“Cross origin requests are only supported for HTTP.” error when loading a local file
React.js: Example in tutorial not working
Cross origin requests are only supported for HTTP but it’s not cross-domain
https://groups.google.com/forum/#!topic/tincr-for-chrome-devtools/nA9k2qh7F-g
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。