Mex*_*xer 3 jquery ruby-on-rails
我有一个表单,用户在提交表单之前必须至少检查一个复选框.是否有任何插件可以处理这个或可能应用于我的表单的jquery?不幸的是,我是一个完全jquery的新秀.
上面的所有答案都显示了如何做客户端,这可能确实更可取.由于您的问题标题表明您正在使用Rails 3,您还可以验证此服务器端:
class Example < ActiveRecord::Base
...
validates :something_was_checked
...
private
def something_was_checked
if self.checkbox_attribute.blank?
self.errors.add(:checkbox_attribute, "You must select at least one option.")
end
end
end
Run Code Online (Sandbox Code Playgroud)