我实际上有一些使用 jQuery Mobile 框架的 HTML 页面,我的问题很简单:在 Chrome 上,我如何打开另一个页面?
<a href="page2.html"> Go to page2 </a>
我的目标是应用过渡效果,所以我添加了例如:
data-transition="turn"
但我的浏览器给了我这个错误:
Error loading page : XMLHttpRequest cannot load file:///C:/.../page2.html. Origin null is not allowed by Access-Control-Allow-Origin
使用 --allow-file-access-from-files 选项运行 Chrome 并不能解决我的问题。我试图添加:
rel="external"
但它取消了我页面之间的所有动画。
你能看到解决这个问题的问题吗?