你如何在Phonegap中发布表格?

时间:2013-04-11 23:50:31

标签: javascript android ios cordova

我正在尝试使用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>

但我不知道如何处理表单提交。我应该直接发布到外部网址api.myserver.com/signin,还是应该使用JQuery将字段发布到API,然后根据响应更改为其他视图?任何评论或代码片段都非常有用。

1 个答案:

答案 0 :(得分:2)

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

根据回复情况,您可以按照自己喜欢的方式继续;显示对话框,更改页面等。