Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个添加客户端表单(在模式视图中)我想在模式标题中放置一条错误消息。是的,我能够做到这一点。问题是,模式将关闭,用户再次打开后将显示消息。
如何使模态保持打开状态并显示错误。谢谢你。新手来了
您在触发时检测按钮上的单击事件,然后进行测试,如果东西很好,您让提交(不要取消事件),否则,您取消事件并显示错误。这是一个例子:
$(document).ready(function() { $( "#button" ).click(function( event ) { if (error){ show error event.preventDefault(); return false; } }); });