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

How to show the second page as the default page in a jQuery mobile Multi-page template structure?

本文关键字:默认 二页 显示 结构 jQuery 移动      更新时间:2023-09-26

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

<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>

示例

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

使用<<h2>代码/h2>

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

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

这部分将开始手动页面初始化:

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

虽然我通常建议不要使用文档就绪,但这里我们需要它来启动手动更改。

完整代码示例

In case jsFiddle down

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();
});

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

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

或者如果你从一个单独的页面导航,你可以做一个链接,把u放到第二页,像这样:

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

只需在url末尾添加第二页的页面id

相关文章: