Submitting Rails Form on a Radio Button Selection

后端 未结 3 1240
深忆病人
深忆病人 2021-02-11 06:55

I have the following rails form (which works) but I want to remove the submit_tag and have the form submit as soon as a radio button selection is made. How do I do that?

<
3条回答
  •  耶瑟儿~
    2021-02-11 07:23

    You'll want to add an onClick event to your radio button that calls this.formName.submit() where formName is your form ID. This will trigger the submit event when you click the radio button.

提交回复
热议问题