패턴 사용 요소의 값이 확인되는 정규식을 설정하는 속성입니다. 다음 코드를 실행하여 패턴 을 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <head> <title>HTML novalidate attribute</title> </head> <body> <form action = "" method = "get" novalidate> Student Name<br><input type = "name" name = "sname"><br> Rank<br><input type = "number" name = "rank"><br> Student Country <br><input type = "text" name = "ccode" pattern="[A-Za-z]{3}" title = "country code"><br> <input type = "submit" value = "Submit"> </form> </body> </html>