導軌和引導3單選按鈕故障 - 引導
我具有包括從圓形按鈕的輸入的形式4的應用程序:
<strong> Radio button options on form </strong><br>
<div class="form-group">
 <%= f.radio_button :category, 'A' %>   <%= f.label "A", "A" %><br />
 <%= f.radio_button :category, 'B' %>   <%= f.label "B", "B" %><br />
 <%= f.radio_button :category, 'C' %>   <%= f.label "C", "C" %><br />
</div>
第一時間的形式是裝,一切看起來是正確的:
我的問題是,如果失敗的形式,由於驗證錯誤(MI ssing需要輸入等等,隨時隨地上的形式),當頁面重新呈現,單選按鈕和標籤都顯示在兩個不同行:
我該如何解決這個問題?
更新 每個生成的HTML是: 原件(正確):
<strong> Radio button options on form </strong><br>
<div class="form-group">
 <input id="listing_category_1" name="listing[category]" type="radio" value="1" />   <label for="listing_1">A</label><br />
 <input id="listing_category_2" name="listing[category]" type="radio" value="2" />   <label for="listing_2">B</label><br />
 <input id="listing_category_3" name="listing[category]" type="radio" value="3" />   <label for="listing_3">C</label><br />
</div>
而對於重新渲染(不正確):
<strong> Radio button options on form </strong><br>
<div class="form-group">
 <div class="field_with_errors"><input id="listing_category_1" name="listing[category]" type="radio" value="1" /></div>   <label for="listing_1">A</label><br />
 <div class="field_with_errors"><input id="listing_category_2" name="listing[category]" type="radio" value="2" /></div>   <label for="listing_2">B</label><br />
 <div class="field_with_errors"><input id="listing_category_3" name="listing[category]" type="radio" value="3" /></div>   <label for="listing_3">C</label><br />
</div>
您可以爲原始頁面和驗證頁面添加生成的HTML和CSS嗎? – Mathias
檢查您的瀏覽器的開發人員工具,找出標記或CSS是否已更改。根據上述截圖,我們無法爲您做到這一點。 – meagar
謝謝,更新了HTML – dmt2989