LoginSignup
1
1

More than 1 year has passed since last update.

LPの下にフォームがあり、バリデートの時にLPの上にファーストビューが行ってしまう。

Posted at

場面は、下記のような時、

スクリーンショット 2022-09-06 14.40.32.png

確認ボタンを押して、エラーが出る。

スクリーンショット 2022-09-06 14.41.41.png

この時の画面がこうなっていて欲しい↓

スクリーンショット 2022-09-06 14.44.18.png

これの方法

html
<form method="post" action="dummy" name="huga" id="hoge">
    <!-- いろいろな項目 -->
    <button type="submit">確認</button>
</form>

html
<form method="post" action="dummy#hoge" name="huga" id="hoge">
    <!-- いろいろな項目 -->
    <button type="submit">確認</button>
</form>

action にフォームのIDを載せる

以上。

1
1
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
1
1