特に何も指定しないとFormのタグの中にbuttonはinput type="submit"と同様な動きになってしまう。
例)
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>Hoge</title> </head> <body> <form method="POST" action="/hoge"> <p> ほげ:<input type="text" name="hogename"> </p> <p> <button >送信する</button> </p> </form> </body> </html>そこで、buttonタグをただのbuttonとして認識させるには、以下のようにbuttonタグに追加する必要がある。