通常,Cordova / jQueryMobile应用程序的index.html
文件包含许多data-role="page"
个页面。
我可以将index.html
文件分成几部分part1.html
,part2.html
......
我的目标是将一个巨大的DOM划分为几个较小的DOM ,以便按需加载。
我搜索了Cordova和jQueryMobile文档站点,但未能找到提示。
答案 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