我在asp.net中使用jquery客户端验证。
我现在面临的问题是,每当我点击页面中的任何按钮时,它都会导致验证而不是单独的特定按钮。
如何解决这个问题。?
谢谢
答案 0 :(得分:3)
假设您有两个按钮SubmitButton和CancelButton并且您不希望CancelButton触发验证插件,只需为CancelButton提供 CssClass =“cancel”
<asp:Button ID="CancelButton" runat="server"
Text="Return to List"
CssClass="cancel" />
答案 1 :(得分:2)
您想使用event.preventDefault()
。
http://api.jquery.com/event.preventDefault/
$("button").click(function(event) {
event.preventDefault();
// do stuff here
});