jQuery-mobile 1.3 Panel always visible

后端 未结 2 678
广开言路
广开言路 2021-02-11 03:47

In the new jQuery-mobile 1.3 version how can be added a left panel that always be visible from the start?

This panel will be act as a navigation menu.

Thanks

2条回答
  •  粉色の甜心
    2021-02-11 04:43

    You can open it programatically like this:

    $(document).on('pagebeforeshow', '#index', function(){       
        $( "#mypanel" ).panel( "open");
    });
    

    And here's a working jsFiddle example: http://jsfiddle.net/Gajotres/EkbYe/

提交回复
热议问题