在发布新网站前不久,我们发现计算机中的同源策略限制了对同一源、源或域上的页面的访问。这是网站:http ://blanc-encens.com/ 。
更糟糕的是,如果它不能立即工作,在重新加载后它会工作!!
您能否从理论上告诉我为什么会发生这种情况,或者如果您是被选中的少数人之一,那么它在哪里不起作用检查问题?编辑:我现在手动将标题设置为“*”!
Chrome 控制台错误:
XMLHttpRequest cannot load http://blanc-encens.com/profile?ajax=1. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://www.blanc-encens.com' is therefore not allowed access. profile:1 0 core.js:271
在 Chrome 中Response Headers
,不工作的机器上的网络选项卡中没有。
我的代码:
var hyper = {
init : function() {
this.content($('.navigation a').not('.follow a'));
this.pop();
},
content : function(obj) {
obj.on('click', function(e){
var thisUrl = $(this).attr('href');
thisalt = $(this).attr('alt');
hyper.load(thisUrl);
e.preventDefault;
window.history.pushState(null, thisalt, thisUrl);
document.title = thisalt;
});
},
pop : function() {
window.onpopstate = function() {
hyper.load(location.pathname);
};
},
load : function(page) {
page = page == '/' ? '/start' : page;
$.ajax({
type: 'GET',
url: page,
data: {ajax : 1},
success: function(data) {
$('.content').empty().append(data);
}
});
}
};
hyper.init();
谢谢!!