Привет, у меня есть две таблицы в форме, необходимые для их индивидуальной проверки в jquery. Когда я нажимаю на submit1, он должен проверять только table1, когда я нажимаю на submit2, он должен проверять только таблицу 2.
сейчас он проверяет оба одновременно, мне нужны индивидуальные проверки таблиц
<html>
<head>
<script type="text/javascript">
$(document).ready(function() {
$("#form1").validate({
rules: {
<%= txtUserName.UniqueID %>: {minlength: 5, required: true},
<%= txtPassword.UniqueID %>: {minlength: 5, required: true},
<%= txtURL.UniqueID %>: {required: true},
},
messages: {
<%= txtUserName.UniqueID %>: {
required: "Plaese enter your name",
minlength: "User name must be atleaet of 5 characters"
},
<%= txtPassword.UniqueID %>: {
required: "Plaese enter your password",
minlength: "Password must be atleaet of 5 characters"
},
<%= txtURL.UniqueID %>:{ required: "Plaese enter Website URL",},
}
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<table width="50%" cellpadding="2" cellspacing="4" style="border: solid 1px navy; background-color: #d5d5d5;">
---username--
--password--
--url----
submit1
</table>
<table width="50%" cellpadding="2" cellspacing="4" style="border: solid 1px navy; background-color: #d5d5d5;">
---Firstname--
--Lastname--
-Address----
submit2
</table>
</form>
</body>