jquery load()在firefox中工作,但在chrome中不起作用

时间:2017-07-30 06:39:10

标签: javascript jquery html google-chrome

以下代码在firefox中工作正常,但在chrome中没有。我对jquery不太熟悉所以请帮帮我。

最终目标是使用class =“change”动态更改div的内容

$(function(){
    $("#content").load("consulting.html");
  });
$(".change").click(function(){
  var page=$(this).attr('href');
  $("#content").load(page);
  return false;

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
     

2 个答案:

答案 0 :(得分:0)

您可以尝试使用 - allow-file-access-from-files 标志设置启动chrome / chromium。

请参阅https://askubuntu.com/questions/160245/how-do-i-make-the-google-chrome-flag-allow-file-access-from-files-permanent

答案 1 :(得分:0)

有3个可能的答案:

  • 使用--allow-file-access-from-files选项

  • 使用--disable-web-security选项(不是更好的选择)

  • 使用&#39; 127.0.0.1&#39;而不是&#39; localhost&#39;

有关如何在Chrome上使用选项,请参阅website