Getting an option text/value with JavaScript

点点圈 提交于 2019-11-26 22:17:43

问题


Answer: var option_user_selection = element.options[element.selectedIndex].text

I am trying to build a form that fills in a person's order.

<form name="food_select">
    <select name="maincourse" onchange="firstStep(this)">
        <option>- select -</option>
        <option text="breakfast">breakfast</option>
        <option text="lunch">lunch</option>
        <option text="dinner">dinner</option>
    </select>
</form>

What I'm trying to do is send in the select object, pull the name and the text/value from the option menu AND the data in the option tag.

function firstStep(element) {
    //Grab information from input element object
    /and place them in local variables
    var select_name = element.name;
    var option_value = element.value;
}

I can get the name and the option value, but I can't seem to get the text="" or the value="" from the select object. I only need the text/value from the option menu the user selected. I know I can place them in an array, but that doesn't help

var option_user_selection = element.options[ whatever they select ].text 

I also need to use the passed in select reference as that is how it's set up in the rest of my code.

Later on, that text/value is going to be used to pull the XML document that will populate the next select form dynamically.


回答1:


You can use:

var option_user_selection = element.options[ element.selectedIndex ].text



回答2:


In jquery you could try this $("#select_id>option:selected").text()




回答3:


form.MySelect.options[form.MySelect.selectedIndex].value



回答4:


var option_user_selection = document.getElementById("maincourse").options[document.getElementById("maincourse").selectedIndex ].text


来源:https://stackoverflow.com/questions/4641962/getting-an-option-text-value-with-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!