浏览器跨域报错:cannot be created in a document with origin 'null'


报错:Uncaught SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL'file:///E:/Mars/JQuery-Mobile-Slide-Menu-master/index.html' cannot be created in a document with origin 'null'.


问题原因:跨域。


解决方案:

1、先打开浏览器再打开项目页面;

2、在引用“jquery.mobile.js“前添加如下代码:

    <script>
<span style="white-space:pre">	</span>$(document).bind('mobileinit',function(){
        $.mobile.pushStateEnabled = false;
      });
    </script>
    <script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章