Rails - How to put a confirmation popup on a f.submit?

前端 未结 2 467
半阙折子戏
半阙折子戏 2020-12-06 09:21

I want to have a confirmation popup on a <% f.submit %> call on a new object form. Is there a way to do this without javascript?

2条回答
  •  攒了一身酷
    2020-12-06 09:32

    The correct way is to use:

    = f.submit "Save", data: { confirm: "Are you sure you want to submit this form?" }
    

提交回复
热议问题