एचटीएमएल डोम बटन अक्षम संपत्ति
सिंटैक्स
−
. के लिए वाक्य रचना निम्नलिखित हैअक्षम संपत्ति सेट करना -
buttonObject.disabled = true|false
यहां, true|false निर्दिष्ट करता है कि दिए गए इनपुट बटन को अक्षम किया जाना चाहिए या नहीं।
- सच - बटन अक्षम हो जाता है।
- झूठा - बटन अक्षम नहीं होगा।
आइए बटन अक्षम गुण के लिए एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html> <html> <body> <button id="Button1">BUTTON</button> <p>Click the below button to disable the above button.</p> <button onclick="buttonDis()">CLICK IT</button> <p id="Sample"> <script> function buttonDis() { document.getElementById("Button1").disabled = true; var x=document.getElementById("Button1").disabled; document.getElementById("Sample").innerHTML = "Button disabled is "+x; } </script> </body> </html>
आउटपुट
यह निम्नलिखित आउटपुट देगा -
क्लिक आईटी बटन पर क्लिक करने पर -
उपरोक्त उदाहरण में -
हमने "बटन1" आईडी वाला एक बटन बनाया है और बटन डिफ़ॉल्ट रूप से सक्षम है।
<button id="Button1">BUTTON</button>
फिर हमने क्लिक पर बटनडिस () पद्धति को निष्पादित करने के लिए क्लिक आईटी बटन बनाया है।
<button onclick="buttonDis()">CLICK IT</button>
बटनडिस () विधि अपनी आईडी "बटन 1" द्वारा बटन तत्व प्राप्त करती है और उस पर अक्षम विशेषता को सत्य पर सेट करती है। बटन को अक्षम करने के बाद इसका अक्षम मान (सही या गलत) चर x को असाइन किया जाता है और पैराग्राफ में "नमूना" आईडी के साथ प्रदर्शित किया जाता है
function buttonDis() { document.getElementById("Button1").disabled = true; var x=document.getElementById("Button1").disabled; document.getElementById("Sample").innerHTML = "Button disabled is "+x; }