在几个文件中分区Apache Cordova应用程序

时间:2014-06-15 16:40:42

标签: jquery-mobile cordova

通常,Cordova / jQueryMobile应用程序的index.html文件包含许多data-role="page"个页面。

我可以将index.html文件分成几部分part1.htmlpart2.html ......

我的目标是将一个巨大的DOM划分为几个较小的DOM ,以便按需加载。

我搜索了Cordova和jQueryMobile文档站点,但未能找到提示。

1 个答案:

答案 0 :(得分:0)

你需要使用这些东西

$(document).on('pagebeforeshow', "#index",function () {
        $(document).on('click', "#changePage",function () {     
            $.mobile.changePage('second.html', { dataUrl : "second.html?paremeter=123", data : { 'paremeter' : '123' }, reloadPage : false, changeHash : true });
        }); 
    });

OR

data-url='about.html'
data-ajax='false'

学习使用这些东西。然后,您就可以处理JQM的多个html文件。

让我们开始使用以下链接

Create Multiple jQuery Mobile Pages and Link them

检查问题以及第一个答案:Navigate between three pages in two different files in JQuery Mobile

和这一个:Linking pages