更新
我刚刚测试了我的示例的链接......该死的东西有效。!我不服气???仍然欢迎任何意见。
我刚刚更新了我的浏览器,Chrome 拒绝了我(以前工作的)对包含 html 的简单文本文件的 ajax 调用。这是我当前的基本代码:
var stringData = $.ajax({ url: 'digz/index/'+$(this).attr("id")+'.txt', async: false }).responseText;
var $newItems = $(stringData);
alert($newItems.filter('.element').length); // FF & IE OK but Chrome = '0'
// there are few things here and I have tested with them rem'd out
$('#container').isotope( 'insert', $newItems ); // std. isotope form
Chrome 控制台给了我:
Failed to load resource: Origin null is not allowed by Access-Control-Allow-Origin.
XMLHttpRequest cannot load [...file path/name... ] Origin null is not allowed by Access-Control-Allow-Origin.
以及 jquery 中的指针 - 在 1.9.0 版中的第 8472 行附近
// Do send the request
// This may raise an exception which is actually
// handled in jQuery.ajax (so no try/catch here)
xhr.send( ( s.hasContent && s.data ) || null );
我在这里有一个精简版的项目:
Ajax 上的 Null return
我认为 ajax 行是问题,需要修改。我尝试了很多替代排列,但有很多选择,我在这里的经验是有限的。