我有這樣jQuery驗證消息問題
<input type="radio" name="specific_parent" id="parent_one" class="radio" value="existing_parent"><label class="redio_label" for="existing_parent">Existing Parent</label>
<input type="radio" name="specific_parent" id="parent_two" class="radio" value="prospective_parent"><label class="redio_label" for="prospective_parent">Prospective Parent</label>
<input type="radio" name="specific_parent" id="parent_third" class="radio" value="other"><label class="redio_label" for="other">Other</label>
我已經申請jQuery驗證這樣三個輸入單選按鈕:
rules: {
specific_parent: {
required: true
}
},
messages: {
specific_parent: {
required: 'Please select radio button'
}
}
問題是,它顯示第一輸入單選按鈕後的錯誤消息,並我的佈局是休息。
你想在哪裏顯示它? – ozil
你正在使用什麼驗證插件? – davidkonrad
下所有三個單選按鈕! – Iffi