formのonsubmitを無効にしたくて調べた時の備忘録
これで無効にできる
<form onsubmit="return false">
index.html
<!DOCTYPE html> <html> <body> <form onsubmit="return false"> <input type="text"> <button type="submit">button</button> </form> </body> </html> |
I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
今回はセクションの中に「タイトルと説明を追加」してみます フォームの編集画面 題名と説明を書くブロックが追加されます 今回の例では以下のように入力します 題名: SectionHeader 説明: Please answer the following questions. フォ...