运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <p>A form with a text field that can contain only three letters (no numbers or special characters):</p> <form action="/action_page.php"> Country code: <input type="text" id="myText" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"> <input type="submit"> </form> <p>Click the "Try it" button to display the value of the pattern attribute of the text field.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myText").pattern; document.getElementById("demo").innerHTML = x; } </script> </body> </html>