Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะแสดงดัชนีของตัวเลือกที่เลือกในรายการดรอปดาวน์ด้วย JavaScript ได้อย่างไร


หากต้องการแสดงดัชนีของตัวเลือกที่เลือกในรายการแบบเลื่อนลง ให้ใช้ selectedIndex คุณสมบัติใน JavaScript

ตัวอย่าง

คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อแสดงดัชนีของตัวเลือกที่เลือก -

<!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>