1. ホーム
  2. jquery

[解決済み] [Solved] Iterate through <select> options

2022-04-08 21:38:55

Question

I have a <select> element in HTML. This element represents a drop down list. I'm trying to understand how to iterate through the options in the <select> element via JQuery.

How do I use JQuery to display the value and text of each option in a <select> element? I just want to display them in an alert() box.

How to solved?

$("#selectId > option").each(function() {
    alert(this.text + ' ' + this.value);
});