0

我有两个文件 - index.html 和 c.html。

当我输入

<a data-rel="dialog" data-transition="flip" href="c.html">button</a>

在 index.html 中,它应该将 c.html 显示为对话框。但是使用

<a data-rel="dialog" data-transition="flip" href="c.html#0">button</a>

根本不起作用(我希望它在 c.html 中显示 id="0" 页面)。如何让它发挥作用?

4

1 回答 1

6

这是做不到的。

jQuery Mobile 不支持将查询参数传递给内部/嵌入式页面,但是您可以添加两个插件到您的项目中来支持此功能。有一个轻量级页面参数插件和一个功能更全面的jQuery Mobile 路由器插件,可与主干.js 或脊柱.js 一起使用。一个名为routerlite的较新插件仅使用四种方法使其变得简单:routeinit、routechange、pageinit 和 pagechange。

官方文档:http: //jquerymobile.com/demos/1.2.0/docs/pages/page-navmodel.html

证明:

索引.html

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <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.2.0/jquery.mobile-1.2.0.min.css" />
        <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>  
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
</head>
<body>
    <div data-role="page" id="index">
        <div data-theme="a" data-role="header">
            <h3>
                First Page
            </h3>
            <a href="index3.html#second" class="ui-btn-right">Next</a>
        </div>

        <div data-role="content">

        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>  
</body>
</html>   

index3.html

<!DOCTYPE html>
<html>
<head>
    <title>jQM Complex Demo</title>
    <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.2.0/jquery.mobile-1.2.0.min.css" />
        <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>  
    <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>    
</head>
<body>
    <div data-role="page" id="third">
        <div data-theme="a" data-role="header">
            <h3>
                Third Page
            </h3>
            <a href="#second" class="ui-btn-right">Next</a>
        </div>

        <div data-role="content">

        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div> 
    <div data-role="page" id="second">
        <div data-theme="a" data-role="header">
            <h3>
                Second Page
            </h3>
            <a href="#index" class="ui-btn-left">Back</a>
        </div>

        <div data-role="content">

        </div>

        <div data-theme="a" data-role="footer" data-position="fixed">

        </div>
    </div>    
</body>
</html>   
于 2013-03-28T19:43:08.913 回答