HTML DOM इनपुट माह अक्षम संपत्ति लौटाती है और संशोधित करती है कि HTML दस्तावेज़ में टाइप ="माह" का इनपुट फ़ील्ड अक्षम है या नहीं।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
1. वापसी अक्षम
object.disabled
2. अक्षम संशोधित करना
object.disabled = true | false
उदाहरण
आइए हम HTML DOM इनपुट माह का एक उदाहरण देखें defaultValue संपत्ति -
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100%; } p{ font-weight:700; font-size:1.2rem; } input{ width:35%; border:2px solid #fff; background-color:transparent; color:#fff; font-weight:bold; padding:8px; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:35%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } .show{ font-size:1.5rem; font-weight:bold; } </style> </head> <body> <h1>DOM Input month disabled Example</h1> <p>Hi, Enter your month of birth</p> <input type="month" class="monthInput"> <button onclick="disEna()" class="btn">Disable/Enable</button> <div class="show"></div> <script> function disEna() { var monthInput = document.querySelector(".monthInput"); var showMsg = document.querySelector(".show"); showMsg.innerHTML =""; if (monthInput.disabled === true){ monthInput.disabled = false; showMsg.innerHTML ="Previously I'm disable but now I'm enable"; } else { monthInput.disabled = true; showMsg.innerHTML ="Previously I'm enable but now I'm disable"; } } </script> </body> </html>
आउटपुट
यह निम्नलिखित आउटपुट देगा -
“अक्षम/सक्षम करें . पर क्लिक करें इनपुट माह फ़ील्ड को अक्षम और सक्षम करने के लिए बटन।