1:onsubmit 事件:会在表单中的确认按钮被点击时发生。
<form action="" method="post" name="form1" onsubmit="return toVerify()"> </form> <script> function toVerify() { if() { return true; }else { return false; } } </script>
2:获取checkbox的选中个数
$("input[type=‘checkbox‘]:checked").length
时间: 2024-10-13 01:36:32