报错: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>
本文详细解释了在使用jQuery Mobile框架时遇到的跨域错误,并提供了两种有效的解决方案来解决这个问题。

被折叠的 条评论
为什么被折叠?



