主页
HTML
HTML 表单属性
试用:novalidate 属性
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The form novalidate attribute</h1> <p>The novalidate attribute specifies that the form data should not be validated when submitted.</p> <form action="/action_page.php" novalidate> <label for="email">Enter your email:</label> <input type="email" id="email" name="email" required><br><br> <input type="submit" value="Submit"> </form> </body> </html>