ASP.NET MVC - 验证摘要和 BlockUI
因此,我一直在登录页面使用以下代码来阻止页面显示“正在加载”消息。
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果自动触发验证并阻止表单发布,我只需将
block();
调用移至表单 onsubmit 属性:这样,它只会在表单提交时触发,而不是在表单提交时触发。比当用户单击按钮时表单可能无效。
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:This way, it will only trigger when the form submits, rather than when the user clicks the button when the form may be invalid.