首页
HTML
HTML 输入属性
试用:pattern 属性
运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The input pattern attribute</h1> <p>The pattern attribute specifies a regular expression that the input element's value is checked against.</p> <form action="/action_page.php"> <label for="country_code">Country code:</label> <input type="text" id="country_code" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"><br><br> <input type="submit" value="Submit"> </form> </body> </html>