输出选中的下拉框的值

Posted 贺小鸣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输出选中的下拉框的值相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
        <select id="objsel" name="objsel" size=8 multiple>
            <option value="0" selected>请选择
            <option value="1">测试一
            <option value="2">测试二
            <option value="3">测试三
            <option value="4">测试四
            <option value="5">测试五
        </select>
        <input type="button" onclick="checkselect();" value="输出">
        选中的项目:<input type="text" id="output" name="output">
</body>
</html>
<script language="javascript">
    function checkselect(){
        var x = document.getElementById("objsel");
        var t = document.getElementById("output");
        var count=0;
        var intvalue="";
        for(i=0;i<x.length;i++){
            if(x.options[i].selected){
                intvalue+=x.options[i].value+",";
                count++;
            }
        }
        t.value=intvalue.substr(0,intvalue.length-1);
//        alert(count);
    }
</script>

效果图:

以上是关于输出选中的下拉框的值的主要内容,如果未能解决你的问题,请参考以下文章

态改变select下拉框的当前选中项

在javascript中如何选中web里面的下拉框的值?

根据数据选中下拉框的值

c#里面,ComBox下拉框比较里面,是不是有这个值?

c#里面ComBox下拉框里面比较里面是不是有这个值

jquery.multiselect.js 实现下拉框多选怎么设置默认全部选中下拉框的值,