質問編集履歴

2

追記

2021/01/09 08:30

投稿

Laugh
Laugh

スコア11

test CHANGED
File without changes
test CHANGED
@@ -135,3 +135,11 @@
135
135
  </script>
136
136
 
137
137
  ```
138
+
139
+
140
+
141
+ //追記
142
+
143
+ autofocusを外すと一つ目のフォームにも入力されなくなってしまうので、onclickイベントが発火された際にfocusがボタンに行ってしまうのだと考えられます。
144
+
145
+ その際にautofocusされている一つ目のフォームに強制的に入力されてしまうのではないかと…

1

formのautofocusの記述忘れ

2021/01/09 08:30

投稿

Laugh
Laugh

スコア11

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  ```
18
18
 
19
- <%= f.number_field :r_first, :placeholder => '1st', class: 'form-control'%>
19
+ <%= f.number_field :r_first, :placeholder => '1st', autofocus: true, class: 'form-control'%>
20
20
 
21
21
  <%= f.number_field :r_second, :placeholder => '2nd', class: 'form-control'%>
22
22