0
我想在複選框後的錯誤摘要和標籤中爲同一個控件顯示不同的錯誤消息。jquery-validation-unobtrusive:在摘要和標籤中顯示不同的錯誤消息
如果該複選框未選中,
總結,我想顯示「您必須勾選版權所有確認複選框繼續。」
在相鄰的複選框標籤,我想顯示 「必須檢查以繼續」
JS:
$.validator.addMethod("chkCopyright", function (value, element) {
return $('#chkCopyright').is(':checked');
}, "You must tick the Copyright Confirmation checkbox to continue.");
的html代碼:
<label class="checkbox-inline">
<input type="checkbox" name="chkCopyright" data-rule-chkCopyright="true" value="1" data-msg-chkCopyright="must check to continue"> I confirm that there are no copyright restrictions on this repro request. <span class="text-danger field-validation-valid" data-valmsg-for="chkCopyright" data-valmsg-replace="true"> </span>
</label>
但是,當驗證失敗,消息在data-msg中超越並顯示在錯誤摘要中。