2016-05-10 14 views

Antwort

1
var elt = document.getElementById("product-select-5827012615"); 
var optvalue = elt.options[elt.selectedIndex].value; 
+0

_ (Bemerkung über einen Bug entfernt) _ Für @op, 'selectedIndex' ist, wie Sie den Index (nullbasiert) der Option erhalten, die ausgewählt wird, unter Verwendung von 'elt.options [index] .value' erhalten Sie den Wert von dieser Option. –

+0

Danke @RogierSpieker Ich habe meine Antwort aktualisiert. – SLePort

2

document.querySelector("output").textContent = 
 
    document.getElementById("product-select-5827012615").value
<select id="product-select-5827012615" name="id"> 
 
    <option selected="selected" value="**18401204615**">Item A</option> 
 
    <option value="18401204743">Item B</option> 
 
</select> 
 

 
<output></output>