“正常”状态下的 JQuery BlockUI形式
我已经搜索过高低,但没有大量工作就找不到答案。我有一个网站,其中有很多强化表格。我正在尝试编写一个全局函数,当在网站上提交任何表单时,该函数将灰显或阻止用户界面。它们并不都有类、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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需使用 元素选择器 即可获取所有
You can just use an element selector to get all
<form>
elements, then hook a handler up to thesubmit
event, like this: