使用 JQuery Mobile 进行表单处理
处理从表单传递到 html 页面的数据。
这是我的形式:
<form data-theme="b" method="get" action="process.html" enabled> <fieldset>
<div data-role="fieldcontain">
<label for="basic> Name </label>
<input type="text" name="basic" id="basic" value="" /> </div>
<button type="submit" data-theme="b" name="submit" value="submit-value"> Submit </button>
</fieldset>
</form>
所以当涉及到 process.html 时,值应该在 url 中,例如 process.html?submit=submit。但我似乎根本无法阅读它们。
我应该如何成功地完成上述操作?
Process the data handed to an html page from a form.
This is my form:
<form data-theme="b" method="get" action="process.html" enabled> <fieldset>
<div data-role="fieldcontain">
<label for="basic> Name </label>
<input type="text" name="basic" id="basic" value="" /> </div>
<button type="submit" data-theme="b" name="submit" value="submit-value"> Submit </button>
</fieldset>
</form>
So when it comes to process.html the values should be in the url, such as process.html?submit=submit. But I can't seem to be able to read them at all.
How should I go about doing the above successfully?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过在
之前添加此内容来修复此问题。关闭所有妨碍此类 GET 表单的 AJAX。
Fixed it by adding this before
</head>
. Turns off all the AJAX that gets in the way of such a GET form.