HTML पैटर्न विशेषता एक नियमित अभिव्यक्ति को परिभाषित करती है जिसके विरुद्ध HTML दस्तावेज़ में HTML तत्व का मान मेल खाता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
<input pattern=”regular expression”>
आइए HTML पैटर्न विशेषता का एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } input[type='password'] { width: 300px; padding: 8px 16px; border: 2px solid #fff; background: transparent; border-radius: 20px; display: block; margin: 1rem auto; outline: none; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } ::placeholder { color: #000; } </style> <body> <h1>HTML pattern attribute Example</h1> <form action=""> <input type="password" placeholder="Enter your account password" required pattern=".{8,}"> <input type="submit" value="Submit" class="btn" onclick='check()'> </form> <div class="show"></div> <script> function check() { if (document.querySelector("input[type='password']").value.length < 8) { document.querySelector(".show").innerHTML = 'Please enter a password of more than or equal to 8 characters.' }; } </script> </body> </html>
आउटपुट
8 वर्णों से कम का पासवर्ड दर्ज करें और फिर “सबमिट करें . पर क्लिक करें चेतावनी संदेश दिखाने के लिए बटन।