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

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


ในการแสดงตัวเลือกที่เลือกในรายการดรอปดาวน์ด้วย 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</p>
      <script>
         function display() {
            var obj = document.getElementById("selectNow");
            document.write(obj.options[obj.selectedIndex].text);
         }
      </script>
   </body>
</html>