Uncaught SecurityError: Failed to execute 'replaceState' on 'History':解决方案

Uncaught SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL 'file:///C:/Users/DXAW/Desktop/webapp/index.html' cannot be created in a document with origin 'null' and URL .

Uncaught SecurityError: Failed to execute 'replaceState' on 'History':解决方案_第1张图片

今天在用jquery和jquery mobile做一个webapp的时候遇到了这个问题。然而这个问题只出现在chrome浏览器中,在火狐中没有一点问题。他说明的是一个安全问题,chrome中有了新的安全机制,这应该是现在出现的一个小bug,不过怎么解决呢?我们只需要在javascript代码中加入一段新的代码,一切就都ok了,使pushState默认为真变为false。

按照代码中的说法,这个问题应该只是出现在本地文件中,如果放到服务器中,我想就不会有这个错误了。

你可能感兴趣的:(Uncaught SecurityError: Failed to execute 'replaceState' on 'History':解决方案)