繁体   English   中英

Javascript多个选择框

[英]Javascript multiple select boxes

我试了一段时间寻找答案,但无济于事。

我正在尝试做一个简单的在线计算器(可以计算一些光伏电池板的能量),但是我陷入了一个简单的难题(尽管我曾经使用Flash的ActionScript 3.0了一段时间,但我对Javascript还是陌生的)。

我需要做的是一个HTML select,它定义了哪个其他select组出现在页面中。 这样的事情(显然这是行不通的,仅举一个例子):

HTML

<html>
<body>
<select id="test1" onclick="checkField()">
<option>Selected A Group</option>
<option>Selected B Group</option>
</select>
<script>//insert second group here</script>
</body>
</html>

Java脚本

function checkField(){
var temp = document.getElementById('test1').value;

if(temp === "Selected A Group"){
//insert code to "echo" the first optional select group
} else {
//insert code to "echo" the second optional select group
}
}

对不起,如果有点混乱,但是我真的不能很好地解释。 这是我想要的示例,选择一个选项会使其他字段相应地更改: http : //www.toshiba.eu/innovation/download_drivers_bios.jsp

您快到了,实际上javascript不会直接“回显”值,而是使用console.log(your value);记录值console.log(your value); 调试控制台,如果我的内存没有故障,则类似于AS2 trace()

要将信息“输出”到文档,您应该查看document.write在使用document.write时,它将直接写入文档末尾。

“正确”的方法是创建一个DOM元素,并在其中包含所需的元素,然后将其附加到所需的元素上。 看一下评论

<!-- Be Aware to use the onchange trigger on select boxes, if you use onclick the function will run, even
if you didn't really chose any option -->
<select id="test1" onchange="checkField()">
<!-- Is good to have a first non-value option, better to trigger the onchange event, if you have 
Select A Group as first option and you click on it, it didn't really "Change", you would have to
pick B Group and then A Group again to trigger the onchange event correctly. -->
<option value="">-- select an option --</option>
<!-- You can have a value attribute on the options, so it's easy to process when programming
while displaying a more detailed description to the users -->
<option value="A">Selected A Group</option>
<option value="B">Selected B Group</option>
</select>

<!-- We create an empty element where we are gonna place the new Select -->
<div id="newSelect"></div>

<!-- By Placing the Javascript on the end of <body>, we ensure that all the DOM elements loaded before running the script -->
<script>
    function checkField(){
        var newSelect = document.getElementById('newSelect'); //targeting container;    
        var temp = document.getElementById('test1').value;

        //Some tasks we do always the option chose is not the first custom one, so we don't have to repeat it
        //on the two If's below
        if(temp !== ""){
            // We remove the select if we placed one already before, so we can add the new one,
            // For example if we chose B Group but changed our mind and Chose A Group later.
            if(oldChild = newSelect.getElementsByTagName('select')[0]){
                oldChild.remove();
            }

            var select = document.createElement("select");
            select.setAttribute('id', 'newSelect');

        }

        if(temp === "A"){
            //you could do JUST:
            //body.innerHTML = "all the html you want in here" instead of all the code following;
            //but all those code is supposed to be the "correct way" of adding elements to the HTML,
            //Google a bit about that for detailed explanations

            var option1 = document.createElement("option");
            option1.value = 1;
            option1.text = "Option 1";
            var option2 = document.createElement("option");
            option1.value = 2;
            option2.text = "Option 2";

            select.appendChild(option1);
            select.appendChild(option2);

            newSelect.appendChild(select);
        } else {
            var option1 = document.createElement("option");
            option1.value = 3;
            option1.text = "Option 3";
            var option2 = document.createElement("option");
            option1.value = 4;
            option2.text = "Option 4";

            select.appendChild(option1);
            select.appendChild(option2);

            newSelect.appendChild(select);
        }
    }
</script>

当然,如果要输出的数据具有模式,则可以使用循环将其略微缩短一些方法,但是可以采用“简单”的方式进行操作,以便您掌握Javascript。

希望所有这些对您有所帮助!

这是演示http://codepen.io/anon/pen/izAHo,您做得差不多。

您应该将onclick事件放在选项标签上,以根据所选选项触发更改。

HTML

<html>
<body>

<select id="test1">
<option onclick="checkField()">Selected A Group</option>
<option>Selected B Group</option>
</select>

<select id="test2">
<option  onclick="check2Field()">Selected C Group</option>
<option>Selected D Group</option>
</select>

<script>//insert second group here</script>
</body>
</html>

JS

function checkField(){
var temp = document.getElementById('test1').value;
if(temp === "Selected A Group"){
document.getElementById('test2').innerHTML="<option>Selected halloooo Group</option>";
} else {
//insert code to "echo" the second optional select group
}
}

查看我的演示以获得更多清晰度。

此处的演示: http : //jsfiddle.net/3GkrX/

几乎和Mevins一样。

HTML:

<select id="test1" id="name" onchange="checkField()">
    <option>----</option>
<option>Selected A Group</option>
<option>Selected B Group</option>
</select>
<div id="optional">Please select!</div>

JS:

function checkField(){
var temp = document.getElementById('test1').value;

    switch(temp){

        case "Selected A Group":
            document.getElementById("optional").innerHTML="<select name='optionalA'><option>1</option><option>2</option></select>";
            break;
        case "Selected B Group":
            document.getElementById("optional").innerHTML="<select name='optionalB'><option>3</option><option>4</option></select>";
            break
            default:
                document.getElementById("optional").innerHTML="Please select!";
            break;

    }

}

还添加了第二组作为实选项,默认添加为“请选择”。 在您的情况下可能是必需的

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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