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.
Introduction Regular expressions are a powerful tool that can be used to extract data from text. In Google Sheets, regular expressions ca...