JQuery - 隐藏页面刷新 div 包装器

发布于 2024-09-28 04:52:24 字数 200 浏览 4 评论 0原文

我想创建一个 jquery 函数,在提交页面上的表单时隐藏页面刷新。我的意思并不是专门针对页面上的特定表单,而是针对页面上的任何表单。如果页面上有表单提交给自己提交,则不显示页面刷新。我想用 div 包裹页面,如果提交了其中的任何内容,则不显示刷新。 (当然我并不是指提交到其他页面的提交。)

这可能吗?有人知道有关如何执行此操作的任何文章吗?

谢谢你!

I would like to create a jquery function that hides page refresh when a form on the page is submitted. I don't mean one that is specific for a particular form on the page but rather for any form on the page. If there is a form submit on the page that submits to itself, don't show page refresh. I'd like to just wrap the page with a div and if anything inside it is submitted, don't show the refresh. (Naturally I don't mean submits that submit to other pages.)

Is this possible? Any one know any articles on how to do this?

Thank you!

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

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

发布评论

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

评论(1

简单气质女生网名 2024-10-05 04:52:24

如果我理解你的意思,你就需要 Ajax。
查看如下函数:

$.getJSON('ajax/test.json', function(data) {

  $('.result').html($('.result').html()+'<p>' + data.foo + '</p>'
    + '<p>' + data.baz[1] + '</p>');
});

or:

$.ajax({ url: "test.html", context: document.body, success: function(){

....................................... }});

If I have understood you, you need Ajax.
Look at functions like:

$.getJSON('ajax/test.json', function(data) {

  $('.result').html($('.result').html()+'<p>' + data.foo + '</p>'
    + '<p>' + data.baz[1] + '</p>');
});

or:

$.ajax({ url: "test.html", context: document.body, success: function(){

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