我是android中phonegap开发的新手。我正在开发phonegap 应用程序。我已经使用表单标签在服务器上提交了代码。现在我想找回结果。所以请帮助我如何获得服务器返回的结果。结果采用 JSON 格式。
这是我用来在我的 html 文件中提交表单的代码。
<form id="signUpform" action="http://web1.xxx.com/sss/signup.php" method="post"
onsubmit="return( validate() );">
<div style="float:left; width: 100%; height: inherit;">
<h3>New Client</h3>
</div>
<br />
<div style="float:left; width: 80%; height: inherit; margin-top: 5px;">
<div style="float:left; width: 40%; height: inherit; margin-top: 5px; padding-top: 8px;">
<label>UserName </label></div>
<div style="float:right; width: 60%; height: inherit;">
<input id="UserUsername" type="text" name="username" /></div>
</div>
<br />
<div style="float:left; width: 80%; height: inherit; margin-top: 5px;">
<div style="float:left; width: 40%; height: inherit; margin-top: 5px; padding-top: 8px;">
<label>Password </label></div>
<div style="float:right; width: 60%; height: inherit;">
<input id="pass" type="text" name="password" /></div>
</div>
<br />
<div style="float:left; width: 80%; height: inherit; margin-top: 5px;;">
<div style="float:left; width: 40%; height: inherit; margin-top: 5px; padding-top: 8px;">
<label> Confirm Password </label></div>
<div style="float:right; width: 60%; height: inherit;">
<input id="cpass" type="text" name="confirm_password" /></div>
</div>
<br />
<div style="vertical-align:middle; float:left; width: 80%; height: inherit; margin-top: 5px;">
<div style="float:left; width: 40%; height: inherit; margin-top: 5px; padding-top: 8px;">
<label> Email ID </label></div>
<div style="float:right; width: 60%; height: inherit;">
<input id="UserEmail" type="text" name="email" /></div>
</div>
<br />
<div style="float:left; width: 80%; height: inherit; margin-top: 5px;">
<div style="float:right; width: 100%; height: inherit;">
<input type="submit" value="Get Started"/> </div>
</div>
</form>
表单在服务器上提交。我用 JSON fromat 取回结果。结果是:
{"UserID":"220"}
我提交表格后,这将在设备上打印。
所以请帮助我如何获得这个价值。
提前致谢