2011-06-21 100 views

回答

1

嘗試:

$('#yourform').validate({ 
//...Your existing validation logic... 
onfocusout: function(element){ 
    if($(element).attr('id') == 'usernameID'){ 
     //add your remote logic somewhere here 
     //or just: 
     $(element).valid(); 
    } 
} 

});

相關問題