चयनित विकल्प की अनुक्रमणिका को ड्रॉप-डाउन सूची में दिखाने के लिए, चयनित अनुक्रमणिका का उपयोग करें जावास्क्रिप्ट में संपत्ति।
उदाहरण
चयनित विकल्प की अनुक्रमणिका प्रदर्शित करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <form id="myForm"> <select id="selectNow"> <option>One</option> <option>Two</option> <option>Three</option> </select> <input type="button" onclick="display()" value="Click"> </form> <p>Select and click the button to get the index of the selected option.</p> <script> function display() { var index = document.getElementById("selectNow").selectedIndex; document.write(index); } </script> </body> </html>