使用 JQuery Mobile 进行表单处理

发布于 2025-01-05 05:33:54 字数 680 浏览 0 评论 0原文

处理从表单传递到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蒗幽 2025-01-12 05:33:54

通过在 之前添加此内容来修复此问题。关闭所有妨碍此类 GET 表单的 AJAX。

 $(document).ready(function() {
                            $.mobile.ajaxLinksEnabled = false;
                            $.mobile.ajaxEnabled = false;
                            $.mobile.ajaxFormsEnabled =false;
              });

Fixed it by adding this before </head> . Turns off all the AJAX that gets in the way of such a GET form.

 $(document).ready(function() {
                            $.mobile.ajaxLinksEnabled = false;
                            $.mobile.ajaxEnabled = false;
                            $.mobile.ajaxFormsEnabled =false;
              });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文