我有这个想法在Cordova中从index.html打开一个服务器中托管的页面(使用jquerymobile设计),并且从那里开始所有逻辑将在服务器端进行,并且在jquery mobile中设计的所有结果视图将在手机上显示以充当本机应用程序。
例如下面是应用程序启动时显示的cordova中的index.html:
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
</div>
<script> window.open("http://localhost:8080/xyz.jsp")</script>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
一旦应用程序启动,它将重定向到xyz.jsp,其中我将在jquery mobile中设计UI。因此,移动用户将获得的视图将是本机应用程序的视图。新的jsp不会在移动浏览器中打开。它将被视为移动应用程序的一部分。我已经测试过了。
我的问题出现在这里, 当我从index,html重定向到托管在某个服务器上的jsp时,我能够以移动应用程序的形式获取视图(因为jquery mobile)但是
我是否可以使用jquery mobile或其他方式使用此jsp的手机功能?