當我去編輯頁面我所有的複選框被選中,而當我看在HTML我有一些則設置爲false:爲什麼複選框是檢查而HTML值=假
<input checked="false" class="hidden" id="cover_inspiration_image_ids" name="cover[inspiration_image_ids][]" type="checkbox" value="68">
我可以」不明白爲什麼checked
值不起作用。 我也試圖與checked="checked"
我試圖用jQuery:$(".hidden").prop('checked')
並返回true
這是我的代碼:
蓋/ _form
- @inspiration_images.each do |img|
- next if img.image.path.nil?
.w-col.w-col-2.w-col-small-4.w-col-tiny-6
label
INPUT[type="checkbox" name="cover[inspiration_image_ids][]" id='cover_inspiration_image_ids' value="#{img.id}" class="hidden" checked="#{check_status(img, @cover)}"]
.image-cov-pick
= cl_image_tag(img.image.path, height: 190, class: 'img-to-pick').html_safe
.white
cover_helper
module CoversHelper
def check_status(image, cover)
cover.inspiration_image_ids && cover.inspiration_image_ids.include?(image.id)
end
end
謝謝你的作品! – Orsay