0

我正在尝试 Phonegap 并在 html 中有一个非常简单的应用程序。

<!DOCTYPE html>
<html>
    <title>&nbsp;</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,然后根据响应更改为另一个视图?任何注释或代码片段都会非常有用。

4

1 回答 1

2

当提交事件触发时,您应该使用 javascript/jQuery 检索表单中输入的值,然后使用 ajax 将值发送到远程服务器并等待响应。

根据响应,您可以按照自己喜欢的方式进行;显示对话框、更改页面等。

于 2013-04-12T00:09:38.300 回答