如何在 jQuery 移动多页模板结构中将第二页显示为默认页面?

Posted

技术标签:

【中文标题】如何在 jQuery 移动多页模板结构中将第二页显示为默认页面?【英文标题】:How to show the second page as the default page in a jQuery mobile Multi-page template structure? 【发布时间】:2013-05-19 23:20:30 【问题描述】:

<body> 
<div data-role="page" id="foo">
    <div data-role="header">
        <h1>Foo</h1>
    </div>
    <div data-role="content">   
        <p>I'm first in the source order so I'm shown as the page.</p>      
    </div>
</div>
<div data-role="page" id="home">
    <div data-role="header">
        <h1>Home</h1>
    </div>
    <div data-role="content">   
        <p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>      
    </div>
</div>
<div data-role="page" id="bar">
    <div data-role="header">
        <h1>Bar</h1>
    </div>
    <div data-role="content">   
        <p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>      
    </div>
</div>
</body>

【问题讨论】:

【参考方案1】:

示例

工作示例:http://jsfiddle.net/Gajotres/UfDaf/

使用的代码

这部分会阻止正常的页面加载。不要忘记,在我的示例中,mobileinit 必须jQuery Mobile 初始化之前进行初始化。

$(document).on("mobileinit",function() 
    $.mobile.autoInitializePage = false;
); 

这部分将开始手册页初始化:

$(document).ready(function()             
    window.location.hash = 'home';
    $.mobile.initializePage();
);

虽然我通常 advise 反对此处的文档准备使用,但我们需要它来启动手动更改。

完整代码示例

万一 jsFiddle 宕机。

HTML:

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
        <script>
            $(document).on("mobileinit",function() 
                $.mobile.autoInitializePage = false;
            );        
        </script>
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>    
    </head>
    <body>
        <div data-role="page" id="foo">
            <div data-role="header">
                <h1>Foo</h1>
            </div>
            <div data-role="content">   
                <p>I'm first in the source order so I'm shown as the page.</p>      
            </div>
        </div>
        <div data-role="page" id="home">
            <div data-role="header">
                <h1>Home</h1>
            </div>
            <div data-role="content">   
                <p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>      
            </div>
        </div>
        <div data-role="page" id="bar">
            <div data-role="header">
                <h1>Bar</h1>
            </div>
            <div data-role="content">   
                <p>I'm the second in the source order so I'm hidden when the page loads. I'm just shown if a link that references my id is beeing clicked.</p>      
            </div>
        </div>        
    </body>
</html>   

Javascript:

$(document).ready(function()             
    window.location.hash = 'home';
    $.mobile.initializePage();
);

【讨论】:

如果还设置了$.mobile.hashListeningEnabled = false;,有什么办法吗?【参考方案2】:

我知道这个问题有点老了,但我偶然发现了一个简单的解决方案:

window.location.href = "_dash.html#page-two";

或者,如果您从单独的页面导航,您可以创建一个链接,将您放在第二页中,如下所示:

<a href="_dash.html#page-two">link to second page</a>

只需在您的网址末尾添加第二页的页面 ID

【讨论】:

以上是关于如何在 jQuery 移动多页模板结构中将第二页显示为默认页面?的主要内容,如果未能解决你的问题,请参考以下文章

使用滑动手势在多页 jQuery 移动应用程序中更改页面

SAP输出表单无显示

Firefox 4 中不显示 jQuery Mobile 多页

JQuery Mobile 1.4.0 - 从 Javascript 打开多页模板页面 [重复]

内容与 PDF 第二页上的页眉重叠

jquery mobile中的日期选择器在第二页中添加时重复