简体   繁体   English

单击选项后如何添加新的选择菜单

[英]How to add a new Select Menu after clicking an option

Im trying replicate this page 我正在尝试复制此页面

https://arrayexplorer.netlify.com/ https://arrayexplorer.netlify.com/

What would be the best approach?As this is repeated i don't want to each one out manually 最好的方法是什么?由于重复了一次,我不想手动地每个人

My first approach was to get the value string, and have an array on the value name and loop through, however the function took the value as a string instead of a variable, i;ve then tried a switch statement, which is going to be very long winded. 我的第一种方法是获取值字符串,并在值名称上有一个数组并循环遍历,但是该函数将值作为字符串而不是变量作为字符串,然后尝试了switch语句,这将是很long。

    var addItems = ['elements to an array', 'elements at the end'];
    var test = ['test', 'hhh'];
    var secondOption = document.getElementById('secondOption'); 
       //secondselect 
     menu
    var arrOptions = document.querySelector('.arrOptions'); //select menu

     arrOptions.addEventListener('change', (e) => {
        var arrValue = e.target.value;

            switch (arrValue) {
             case 'addItems':
               secondOption.innerHTML = '';
                 runValues(addItems);
                  break;

             case 'other':
                secondOption.innerHTML = '';
                   runValues(test);
                 break;
           }
          });


       function runValues(arr) {
          console.log(typeof arr);

          for (var i = 0; i < arr.length; i++) {
             secondOption.innerHTML += '<option>' + arr[i] + '</option>';
          }
       }


    //html

   <select class="arrOptions"> 
       <option value="addItems">Add Items to an Array</option> 
       <option value="removeItem">Remove Items</option>
       <option value="findItems">Find Items</option>
       <option value="walkOver">Walk Over Items</option>
       <option value="returnString">Return a String</option>
       <option value="orderArray">Walk Over Items</option>|
       <option value="other">Other</option>
  </select>

This isn't perfect, but it's an example of how you can dynamically change the options in a <select> element. 这并不完美,但这是如何动态更改<select>元素中的选项的一个示例。 Updated codepen example . 更新了codepen示例

HTML: HTML:

<html>
  <button id='button' onClick='handleClick()'>Change Array</button>
  <input type='number' id='number' value='0' onChange='handleChange()'/>
  <select id='select'>
  </select>
</html>

JavaScript: JavaScript的:

const lists = [
  {
    one: { value: 1 },
    two: { value: 2 },
    three: { value: 3}
  },
  {
    four: { value: 4 },
    five: { value: 5 },
    six: { value: 6}
  },
  {
    seven: { value: 7 },
    eight: { value: 8 },
    nine: { value: 9 }
  }
]

const inputNumber = document.getElementById('number')
const select = document.getElementById('select')

function handleClick() {
  inputNumber.value = parseInt(inputNumber.value) + 1
  handleChange()
}

function handleChange() {
  select.innerHTML = '' // Removes previous list options on update
  const currentNumber = parseInt(inputNumber.value)
  const currentList = lists[currentNumber - 1]
  const keys = Object.keys(currentList)
  keys.map((key, index) => {
    const newOption = document.createElement('option')
    newOption.value = currentList[key].value
    newOption.innerHTML = key
    select.appendChild(newOption)
  })
}
There are two function one for which option is selected and according 
selected value switch call second function named runValues(array) with 
parameter as array and set option in second select box. 
copy script and html code and paste in your code necessary place and check 
and verify.

<script>
var addItems = ['elements to an array', 'elements at the end'];
var test = ['test', 'hhh'];
var arrFindItems = ['milk', 'eggs', 'sugar', 'keys'];

    function event_function()
    {
        var select_one = document.getElementById("select_one");
        var selected_option = select_one.options[select_one.selectedIndex];

        switch(selected_option.value)
        {
            case "addItems" :
                runValues(addItems);
                break;

            case "removeItem" :
                runValues(test);
                break;

            case "findItems" :
                runValues(arrFindItems);
                break;

        }
    }


    function runValues(arr)
    {
        var secondOption = document.getElementById('second_select');
        secondOption.innerHTML = "";

        alert("First Element of Array : " + arr[0]);

        for (var i = 0; i < arr.length; i++)
        {
            secondOption.innerHTML += '<option>' + arr[i] + '</option>';
        }
    }

//Html File

<html>
<body>

I Have An Array :
<select class="arrOptions" id="select_one" onchange="event_function()">
    <option value="addItems">Add Items to an Array</option>
    <option value="removeItem">Remove Items</option>
    <option value="findItems">Find Items</option>
    <option value="walkOver">Walk Over Items</option>
    <option value="returnString">Return a String</option>
    <option value="orderArray">Walk Over Items</option>|
    <option value="other">Other</option>
</select>

I m interested in :
<select id="second_select">

</select>
</body>
</html>

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

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