ASP.NET MVC - 验证摘要和 BlockUI

发布于 2024-12-09 16:05:52 字数 195 浏览 2 评论 0原文

因此,我一直在登录页面使用以下代码来阻止页面显示“正在加载”消息。

<input id="submit" type="submit" value="Log On" onclick="block();"/>

如果验证出现错误,则阻止消息将永远保留在那里。 呈现阻止消息以便考虑验证的最佳方式是什么?

So I've been blocking the page with a "Loading" message using the following code for a logon page

<input id="submit" type="submit" value="Log On" onclick="block();"/>

If there's an error with the validation though, the block message will stay there forever.
What's the best way to present the block message so it takes the validation into account?

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

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

发布评论

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

评论(1

多彩岁月 2024-12-16 16:05:52

如果自动触发验证并阻止表单发布,我只需将 block(); 调用移至表单 onsubmit 属性:

<form onsubmit="block();">

这样,它只会在表单提交时触发,而不是在表单提交时触发。比当用户单击按钮时表单可能无效。

If the validation is being triggered automatically and stopping the form from posting, I would simply move the block(); call to the forms onsubmit attribute:

<form onsubmit="block();">

This way, it will only trigger when the form submits, rather than when the user clicks the button when the form may be invalid.

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