我的格式中嵌入了单选按钮
<%= 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参数不会传递。
答案 0 :(得分:2)
我应该指出, live 和 bind 都已弃用。您可以使用。 on()
执行这两项操作尝试:
$(".namePresent").on('click',function(e){
$("#form").submit();
//form is the id of my form_for
});
查看link。