0

这是为跨平台开发的 worklight 应用程序,当我启动应用程序时,我需要显示默认页面,我使用 jquery mobile 来开发放置在同一 html 文件下的页面...

<html>
<body>
<div data-role="page1" id="one">
.
.
</div>
<div data-role="page2" id=two>
.
.
</div>
</body>
</html>

在 wlCommonInit() 函数中,我试图像这样加载第一页

function wlCommonInit(){
$.mobile.changePage("#one");
}

目前结果页面不是我所期望的,它加载了两个页面,每个页面元素相互重叠......如何加载在相同 html 中定义的初始页面?

4

1 回答 1

1

您可以在 Worklight 的开发人员工作站点上查看 jQuery 移动应用程序示例 - http://public.dhe.ibm.com/ibmdl/export/pub/software/mobile-solutions/worklight/docs/WorklightStarter_jQueryMobile.zip

于 2012-10-25T10:18:09.230 回答