2012-01-22 53 views
0

今天我必須驗證我的表單,並且我有問題。驗證單選按鈕是否被選中

我有2個單選按鈕: - 公司ID:#firma - 私人人ID:#osoba

如果公司被選中我必須驗證NIP(公司編號)輸入所需和PESEL(人數)因爲不是必需的。

如果私人被檢查,我必須根據要求驗證PESEL,並且不要求NIP。

PESEL ID:#pesel NIP ID:#nip

我想:

$("#domainform").validate({ 
    rules: { 
    nip: { 
     required: "#firma:checked" 
    }, 
    pesel: { 
     required: "#osoba:checked" 
    } 
    }, 
    debug: true 
}); 
+0

有條件驗證可能有幫助:http://stackoverflow.com/questions/1084475/jquery-validate-conditional-validation-radiobutton-and-dropdownlist –

回答

0

你的代碼只是正常,檢查demo