这是我的验证功能,当有一个表单时它工作正常,当单页中有多个表单时它不起作用。
<script>
$(function() {
$("form").validity(function() {
$("#name").require();
});
});
</script>
我的表格就像
<form action="#" method="post" id="firstform">
<input type="text" id="name">
</form>
<form action="#" method="post" id="secondform">
<input type="text" id="name_othername">
</form>
谁能给我建议,如何调用第一个表单ID 谢谢