2010-08-05 60 views

回答

3

退房這個職位的結束日期大於開始日期問題:

Validate that end date is greater than start date with jQuery

採取了一步,你可以通過編寫自定義方法做幾乎任何你想要與驗證插件。您不必使用通用輸入參數。您可以引用頁面上的任何選擇器。所有的方法關心的是它是否返回真或假。

jQuery.validator.addMethod("acustomvalidator", 
    function(value, element) { 

     // check some inputs by a selector on the page, or do whatever... 
     if($('#yourinput1').val().length > 0 || $('#yourinput2').val().length > 0) 
      return true; 
     else 
      return false; 
    }, 
    "Please fill out one of my input boxes." 
); 


<input type="txt" class="acustomvalidator" id="yourinput1" /> 
<input type="txt" class="acustomvalidator" id="yourinput2" /> 
相關問題