大家好。
我想我想了解更多关于 jQuery mobile 的知识,所以我昨天开始了,但我已经被困在了最开始的地方。
我想要实现的是:
- index.html 加载
- index.html 重定向到 pages/home.html
这样,pages/home.html 将成为默认页面。这有可能吗?目前,我有这个:
<body>
<script>
$(document).bind('pagecreate', function()
{
$.mobile.changePage("pages/home.html");
});
</script>
</body>
</html>
它显示了一种奇怪的行为,滑动两次并显示错误消息(说页面无法加载)。
我希望我的所有页面都在 pages 子目录中。这是可能的还是我又不可能了?
谢谢。
编辑
另一个页面在正文中包含以下内容;
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div>
<div data-role="content">
<p>Page content goes here.</p>
</div>
</div>