jQuery Mobile - 如何将表单提交到 URL 并转换到 DOM 内的另一个页面?

发布于 2024-12-09 04:35:57 字数 102 浏览 0 评论 0原文

在 jQuery 移动示例中。提交表单后显示的页面与表单将被 POST-ing/GET-ing 的页面相同。

是否可以将表单提交到 URL 并转移到 DOM 内的另一个页面?

in the jQuery mobile example. The page that will be displayed after a form is submitted is the same as where the form will be POST-ing/GET-ing to.

Is it posible to submit forms to a URL and transit to another page inside the DOM?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

红尘作伴 2024-12-16 04:35:57

您可以为表单的 submit 事件添加事件处理程序并手动提交表单,然后手动转换到您想要的任何页面。

$(function () {
    $('#form_id').bind('submit', function (e) {
        e.preventDefault();
        $.post('path/to/file.php', $(this).serialize(), function (response) {
            $.mobile.changePage('#page_to_goto', {transition: 'slide'});
        });
    });
});

一些注意事项:

You can add an event handler for the submit event for the form and submit the form manually, then manually transition to whatever page you want.

$(function () {
    $('#form_id').bind('submit', function (e) {
        e.preventDefault();
        $.post('path/to/file.php', $(this).serialize(), function (response) {
            $.mobile.changePage('#page_to_goto', {transition: 'slide'});
        });
    });
});

Some Notes:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文