JQuery加载脚本通过ajax无法正常工作 - 仅在firefox中

时间:2014-11-24 15:01:57

标签: jquery ajax

我试图通过ajax加载addthis脚本但不知何故它只在firefox(Tried Developer +最新稳定版本)中不起作用。它适用于Chrome&苹果浏览器。示例代码如下所示

initAddthis: function(){
  var that = this;
  var script = 'https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-###';
  for (var i in window) {
    if (/^addthis/.test(i) || /^_at/.test(i)) {
      delete window[i];
    }
  }
  window.addthis_share = null;
  $.ajax({ url: script, 
         dataType: 'script', 
         cache: true
  }).done(function() {}).fail(function(jqhr, status, errorThrown){}); }

errorThrown也没有足够的信息。它只是说'错误'。不知道发生了什么事。我尝试添加contentType:'text / javascript'但仍无法正常工作。

0 个答案:

没有答案