0
我想顯示jQuery驗證插件在特定位置生成的錯誤消息。我怎樣才能做到這一點?例如,我有2個單選按鈕,默認情況下,插件會在第一個單選按鈕(在文本「1年」之前)生成錯誤消息。我想在第二個單選按鈕之後顯示(在文本「2年」之後)。我這樣做jQuery驗證錯誤消息問題
HTML:?
<div >
<label for="period">Select period</label>
<div class = "radio-buttons">
<input type="radio" name="period" > 1 year
<input type="radio" name="period" > 2 years
<span class="error">Display error message here.</span>
</div>
</div>
我跨度顯示錯誤消息
$("#test").validate({
errorElement: "span",
});