तत्व का प्रदर्शन प्रकार सेट करने के लिए, डिस्प्ले . का उपयोग करें संपत्ति। यदि आप तत्व को छिपाना चाहते हैं, तो कोई नहीं का उपयोग करें।
उदाहरण
जावास्क्रिप्ट के साथ किसी तत्व के प्रदर्शन प्रकार को सेट करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #myID { width: 250px; height: 200px; background-color: green; } </style> </head> <body> <button onclick="display()">Set display as none</button> <div id="myID"> <h1>Heading Level 1 for Demo</h1> This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. </div> <script> function display() { document.getElementById("myID").style.display = "none"; } </script> </body> </html>