我正在尝试 Phonegap 并在 html 中有一个非常简单的应用程序。
<!DOCTYPE html>
<html>
<title> </title>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header">
<h1>Trying out Phonegap</h1>
</div>
<div data-role="content">
<h3>Sign in here</h3>
<form>
Username
<input type='text' name='username'>
Password
<input type='text' name='password'>
<input type='submit' name='submit' value='Login'>
</form>
</div>
</div>
</body>
</html>
但我不知道如何处理表单提交。我应该直接发布到外部 url api.myserver.com/signin 还是应该使用 JQuery 将字段发布到 API,然后根据响应更改为另一个视图?任何注释或代码片段都会非常有用。