LoginSignup
0
0

More than 5 years have passed since last update.

Rails こまごま メモ

Posted at

こまごまとしたことを書き連ねるよ

submitボタンの二度押し防止

bottunやらformを作るヘルパー関数にdata: { disable_with: '送信中' }を入れる

form_forの中で
<%= f.submit '運営者に意見を送る', class: 'btn btn-default',
    data: { disable_with: '問い合わせ中...' } %>
ボタンタグの中で
<%= button_tag type: "submit, data: { disable_with: '送信中' } do %>
        投稿する
<% end %>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0