gpt4 book ai didi

ruby-on-rails - 简单形式 : Use fieldset/legend for radio buttons/checkboxes

转载 作者:行者123 更新时间:2023-12-02 04:50:29 25 4
gpt4 key购买 nike

从可访问性的角度来看,对单选按钮和复选框使用 fieldset/legend 组合非常重要:

fieldset
legend What is your sex?

label for="male" Male
input type="radio" id="male"

label for="female" Female
input type="radio" id="female"

当已经在 fieldset/legend 对中时,这甚至是正确的,如下所示:

fieldset
legend Personal information

label for="name"
input type="text" id="name"

fieldset // Yes, this is a fieldset inside a fieldset!
legend What is your sex?

label for="male" Male
input type="radio" id="male"

label for="female" Female
input type="radio" id="female"

label for="email"
input type="text" id="email"

不过,Simple_Form 会自动为这些图例生成 label 元素。有没有简单的方法告诉 Simple_Form 创建 fieldset/legend,或者我必须使用自定义包装器来解决这个问题?

更新

首先,我创建了一个自定义包装器,如下所示:

config.wrappers :vertical_radio_and_checkboxes, tag: 'fieldset', class: 'form-group', error_class: 'has-error' do |b|
b.use :html5
b.optional :readonly

b.wrapper tag: 'legend', class: 'col-sm-3 control-label' do |ba|
ba.use :label # TODO: Doesn't need to be a label tag, see http://stackoverflow.com/questions/29261556/simple-form-use-fieldset-legend-for-radio-buttons-checkboxes
end

b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
ba.use :input
ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
end
end

这暂时没问题,虽然我没有找到告诉 Simple_Form 不要为标签生成 label 元素的方法(它不指向任何 ID,这意味着它无论如何都不是正确的用法,但它添加了一些重要的 CSS 类,所以我不想放弃它并使用 label_text)。

我已将问题添加到 Simple_Form-Bootstrap 存储库:fieldset/legend should be used for multiple checkboxes/radiobuttons .

最佳答案

防止simple_form生成<label>你可以使用 :label => false

例如在你的_form.haml :

= f.input :name, :label => false

在你的表单中。

这就是你想要的吗?不确定这就是您的问题的全部原因。

以防万一,可能会有一些有用的信息here

关于ruby-on-rails - 简单形式 : Use fieldset/legend for radio buttons/checkboxes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29261556/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com