“正常”状态下的 JQuery BlockUI形式

发布于 2024-10-02 01:11:13 字数 185 浏览 4 评论 0原文

我已经搜索过高低,但没有大量工作就找不到答案。我有一个网站,其中有很多强化表格。我正在尝试编写一个全局函数,当在网站上提交任何表单时,该函数将灰显或阻止用户界面。它们并不都有类、id 等。有些通过常规提交按钮提交,有些已经有 javascript 提交按钮等。

有没有一种简单的方法可以说明,当提交任何表单时,它将在整个站点系统范围内变灰?

I have searched hi and low, but can't find an answer without a lot of work. I have a site that has lots of intensive forms. I am trying to write a global function that will gray out or block the UI when any form is submitted on the site. They do not all have a class, an id, etc. Some submit via a regular submit button, some already have javascript submit buttons, etc.

Is there a simple way to say when any form gets submitted it will gray out the site system wide?

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

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

发布评论

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

评论(1

温柔一刀 2024-10-09 01:11:13

您只需使用 元素选择器 即可获取所有

元素,然后将处理程序挂接到 submit 事件,如下所示:

$("form").submit(function() {
  $(this).block(/* options here if needed */);
});

You can just use an element selector to get all <form> elements, then hook a handler up to the submit event, like this:

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