运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <form id="myForm" action="/action_page.php"> E-mail: <input type="email" name="user_email"> <input type="submit"> </form> <p>Click the "Try it" button to specify that the form-data above should not be validated on submission.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myForm").noValidate = true; document.getElementById("demo").innerHTML = "The novalidate attribute is now added to the form element, and the form-data will NOT be validated on submission."; } </script> </body> </html>