3

我的表单中嵌入了单选按钮

<%= 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 中来自单选按钮的参数没有传递。

4

1 回答 1

2

我应该指出livebind都被弃用了。您可以同时使用 . 上()

尝试:

$(".namePresent").on('click',function(e){

   $("#form").submit();
//form is the id of my form_for
 });

链接

于 2012-04-23T11:43:38.473 回答