我想用parsley.js驗證單選按鈕。以下是我正在嘗試使用的代碼使用parsley.js驗證單選按鈕
<p id="registration_field_custom2" class="onefield registration_field_custom2">
<span class="doyou">
<span class="text">etc etc etc etc ?</span>
<input type="radio" name="custom2" value="Yes" id="custom2_yes"
data-required="true"
data-error-container="#submitDetails .error6"
data-error-message ="Please chose either yes or no"
/>
<label for="custom2_yes">Yes</label>
<input type="radio" name="custom2" value="No" id="custom2_no"
/>
<label for="custom2_no">No</label>
</span>
</p>
但是,無論我選擇是或否,它仍在查找兩者都需要的數據。我只是希望用戶能夠選擇是或否......如何使用parsley.js來做到這一點?
這應選擇答案。感謝代碼示例 – geedubb
這隻適用於第一個單選按鈕的父級的錯誤類... – Loenix