Submitting Rails Form on a Radio Button Selection

后端 未结 3 1475
梦毁少年i
梦毁少年i 2021-02-11 06:45

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:34

    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.

提交回复
热议问题