使用jQuery Mobile动态创建虚拟页面

时间:2013-03-21 14:29:18

标签: php javascript jquery ajax jquery-mobile

我尝试使用jQuery Mobile链接虚拟页面,但我有两个问题:

  • 第一次加载页面时,不会应用CSS。
  • 当我选择一个页面并且我想要更改为另一个页面时,我注意到每次经过页面1时都会这样。

这是我的example

代码:

            var nbrButton = 3;
            $(document).ready(function(){
                for(i = 1;i <= nbrButton;i++) {

                    $("body").append('<div id="p'+i+'" data-role="page" class="pages"><div data-role="content">Page'+i+'</br><a data-role="button" rel="internal" href="#p1"  data-inline="true">1</a><a data-role="button" rel="internal" href="#p2"  data-inline="true">2</a><a data-role="button" rel="internal" href="#p3"  data-inline="true">3</a></div></div>');

                }
                $("#p1").show();

            });

你能告诉我这是什么问题,或者有更好的方法吗?

谢谢。

3 个答案:

答案 0 :(得分:2)

您不能动态创建新的jQuery Mobile页面(您可以,但该页面不具有样式),除非您至少有一个现有页面。这里有一个解决方法,你可以创建一个空的jQuery移动页面并用它来创建一个新页面。

这是一个有效的例子:

<!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://www.dragan-gaic.info/js/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>    
    <script>
                $(document).on('pageshow', '#index', function(){       
                    $('<div>').attr({'data-role':'page','id':'second'}).appendTo('body');
                    $('<div>').attr({'data-role':'header','id':'second-header'}).append('<h3>Header Title</h3>').appendTo('#second');
                    $.mobile.changePage("#second");
                });    
    </script>
</head>
<body>
    <div data-role="page" id="index">

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

现在,您应该使用第一个隐藏页面的pageshow页面事件来创建新的动态页面。页面创建后,只需使用更改页面显示第一个可见页面。

答案 1 :(得分:2)

<强>更新

我还删除了链接中的data-rel="internal"

<强>答案

我已完成以下操作。

而不是

$('#p1').show();

我添加了这个

$.mobile.changePage( '#p1', { allowSamePageTransition: true });

它将刷新Page-1 p1以重新加载样式。

工作example

答案 2 :(得分:-1)

要应用CSS样式,只需在$("#p1").trigger('create');

之后添加$("#p1").show();作为最后一行