tôi chỉ cần thực hiện xác thực nếu một phương thức đang mở, bởi vì nếu tôi mở nó, rồi tôi đóng nó, và tôi nhấn nút để mở phương thức đó thì nó không hoạt động vì nó đang thực hiện xác thực jquery, nhưng không hiển thị vì phương thức đã bị loại bỏ.
Vì vậy, tôi muốn quảng cáo một jquery nếu phương thức đang mở để tôi xác thực, điều này có khả thi không?
<script>
$(document).ready(function(){
var validator =$('#form1').validate(
{
ignore: "",
rules: {
usu_login: {
required: true
},
usu_password: {
required: true
},
usu_email: {
required: true
},
usu_nombre1: {
required: true
},
usu_apellido1: {
required: true
},
usu_fecha_nac: {
required: true
},
usu_cedula: {
required: true
},
usu_telefono1: {
required: true
},
rol_id: {
required: true
},
dependencia_id: {
required: true
},
},
highlight: function(element) {
$(element).closest('.grupo').addClass('has-error');
if($(".tab-content").find("div.tab-pane.active:has(div.has-error)").length == 0)
{
$(".tab-content").find("div.tab-pane:hidden:has(div.has-error)").each(function(index, tab)
{
var id = $(tab).attr("id");
$('a[href="#' + id + '"]').tab('show');
});
}
},
unhighlight: function(element) {
$(element).closest('.grupo').removeClass('has-error');
}
});
}); // end document.ready
</script>