<input name="mobile" id="mobile" type="text" >
<input type="image" id="chk_mobile" src=".......">
$('#chk_mobile').click(function(){
$("#mobile").blur();
if( $.formValidator.isOneValid('mobile') ){
//以下为验证通过进行的操作
}
return false; //验证按钮为image,防止整个表单验证,要加return false
});
<input name="mobile" id="mobile" type="text" >
<input type="button" id="chk_mobile" value="验证">
$('#chk_mobile').click(function(){
$("#mobile").blur();
if( $.formValidator.isOneValid('mobile') ){
//以下为验证通过进行的操作
}
});