我有这个代码可以使用:
<div data-role="content">
<div data-role="content">
<form id="registerForm" action="/register" method="post" data-ajax="false" class="ui-body ui-body-a ui-corner-all">
<fieldset>
<div data-role="fieldcontain">
<label for="rUIdInput">Email:</label>
<input name="<%=User.USER_ID%>" id="rUIdInput" value="" type="email" placeholder="your.mail@abc.com" />
<label for="rUPwInput">Password:</label>
<input name="<%=BasicAuthRedirectServlet.PASSWORD%>" id="rUpwInput" value="" type="password" placeholder="Your password" />
</div>
<button type="submit" data-theme="b">Register</button>
</fieldset>
</form>
</div>
</div>
当我单击注册按钮并输入一些值并点击注册时,我会返回一个 JSON 对象。我不确定如何处理这个 JSON 对象
谢谢!