我使用BootstrapValidator和我有一些文本字段和2個選項的單選按鈕,我需要驗證文本字段只有在單選按鈕選項2被選中,我怎樣才能獲得呢?BootstrapValidator條件驗證
這是形式:
<form action="/it/Account/SignUp" class="form-horizontal" id="signup_form" method="post" role="form">
<label>Name</label>
<input type="text" name="name" class="form-control" id="name">
<label>Company</label>
<input type="text" name="company" class="form-control" id="company">
<input type="radio" name="usertype" value="0"><label>Private</label>
<input type="radio" name="usertype" value="1"><label>Company</label>
</form>
這是JavaScript的BootstrapValidator:
$('#signup_form').bootstrapValidator({
message: 'This value is not valid',
live: 'disabled',
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
name: {
validators: {
notEmpty: {
message: 'required'
},
}
},
company: {
validators: {
notEmpty: {
message: 'required'
},
}
},
}
}
我只需要確認「公司」字段僅當「用戶類型」的無線電值等於1
守則,請... – nicael
歡迎來到Stack Overflow。請提供一個你迄今爲止嘗試過的例子,以及你遇到的問題?如果您可以證明您在發佈之前試圖解決問題,那麼您很可能會收到社區的有用回覆。 –
我插入了一個代碼示例 – user2100125