简体   繁体   中英

Get selected value of dropdown

I'm having a rather different structure of HTML and I am trying to get the selected value of a dropdown list as seen in the below code:

<div class="quantityDropdown quantityDropdown-cartItem">
    <select id="qtySelect-61224b70-7b26-11e6-91d5-6921d6fe7421" class="cart-quantity-picker"
            data-orderitem="61224b70-7b26-11e6-91d5-6921d6fe7421">
        <option value="1">1</option>
        <option value="2" selected="">2</option>
        <option value="3">3</option>
        <option value="4">4</option>
    </select>
</div>

My code returns null .

I want to get 2 as my value. As you can see, there's no value in the selected attribute.

var quantity = document.querySelector(".quantityDropdown select").getAttribute("selected");

How do I get the value 2 that's outside the option tag?

This will give you the value of the selected item:

quantity = document.querySelector(".quantityDropdown select").value;

However if you want the actual content of the selected item (ie the text shown) outside of the option tag, use:

var quantity = document.querySelector(".quantityDropdown select")[document.querySelector(".quantityDropdown select").selectedIndex].innerHTML;

使用document.querySelector(".quantityDropdown select").selectedIndex

To get the selected option value you need to use two properties on the select element: options and selectedIndex to get the html option element, then you can get the value.

 const dropdown = document.querySelector('.cart-quantity-picker') console.log('selectedIndex', dropdown.selectedIndex) console.log('options', dropdown.options) console.log('selected', dropdown.options[dropdown.selectedIndex].value) 
 <div class="quantityDropdown quantityDropdown-cartItem"> <select id="qtySelect-61224b70-7b26-11e6-91d5-6921d6fe7421" class="cart-quantity-picker" data-orderitem="61224b70-7b26-11e6-91d5-6921d6fe7421"> <option value="1">1</option> <option value="2" selected>2</option> <option value="3">3</option> <option value="4">4</option> </select> </div> 

in case you need the get the 'value' :

var dropdown = document.getElementById("qtySelect-61224b70-7b26-11e6-91d5-6921d6fe7421");
var selValue = dropdown.options[dropdown.selectedIndex].value;

But if you want to get the text ΝΟΤ the value , you do:

 var dropdown = document.getElementById("qtySelect-61224b70-7b26-11e6-91d5-6921d6fe7421");
    var selText = dropdown.options[dropdown.selectedIndex].text;
<select id="ddlViewBy">
  <option value="1">test1</option>
  <option value="2" selected="selected">test2</option>
  <option value="3">test3</option>
</select>

You should get the option tag, like this:

var quantity = document.querySelector(".quantityDropdown select option:checked");

You could use checked also for checkbox and radio.

For getting the value you can use

document.querySelector('#qtySelect option:checked').value;

For getting the actual text inside the option you can use

document.querySelector('#qtySelect option:checked').text;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM