我的表单中嵌入了单选按钮
<%= f.radio_button :name_present,true,:class => "namePresent"%>
<%= f.radio_button :name_present,false,:class => "namePresent"%>
我的 application.js 文件包含
$(".namePresent").live('click',function(e){
$("#form").submit();
//form is the id of my form_for
});
所有参数都在 chrome 中传递,但在 firefox 中来自单选按钮的参数没有传递。