我有一組按鈕,需要其中的一個被點擊,以進入下一個表格:如何讓用戶點擊要驗證的表單的按鈕?
<div class="btn-group" data-toggle="buttons-radio">
<button type="button" class="btn" data-bind="click: sportYes">Yes</button>
<button type="button" class="btn" data-bind="click: sportBasic">Basic</button>
<button type="button" class="btn" data-bind="click: sportNo">No</button>
</div>
我使用JQuery驗證,我想寫一個validate
方法,但我可以沒有使用我的典型方法,比如給文本字段一個必需的值,例如
$("#FormThatNeedsToBeValidated").validate({
rules: {
textinput1: {
required: true
},
textinput2: {
required: true
}}});
即使我知道語法,我不認爲這會有所幫助,因爲不需要所有的按鈕。 有沒有辦法利用我的三個按鈕之一被點擊時呈現的active
屬性?
你爲什麼不使用複選框或單選按鈕,? – Barmar
@Barmar我不是該網頁或該網站的作者,所以我沒有權力改變用戶界面。 – programstinator