Опции флажков не скрыты

0

hello all: так что я сейчас работаю над проектом, в котором пользователь выберет опцию выпадающего меню, которая затем откроет серию флажков. Он работал до сих пор, когда некоторые флажки отображаются независимо от того, что, и когда я выберу опцию drop down, она ничего не покажет. Это мой код:

<select id="select" onchange="test(this)">
    <option>hi0</option>
    <option>hi1</option>
    <option>hi2</option>
    <option>hi3</option>
    <option>hi4</option>
    <option>hi5</option>
    <option>hi6</option>
    <option>hi7</option>
</select>

<form id="option1">
<input type="checkbox" name="Color" value="School Color">The  are a solid school color.
<br>
<input type="checkbox" name="Hem" value="Hem">The  are hemmed.
<br>
<input type="checkbox" name="Size" value="Size">The pants are not to big or small.
<br>
<input type="checkbox" name="Style" value="Style">The pants are not sweats or jogging style.
</form>

<form id="option2">
<input type="checkbox" name="Color" value="School Color">The shorts are a solid school color.
<br>
<input type="checkbox" name="Length" value="Length">The shorts are not shorter than your fingertip, or longer than your knees. (Capris okay.)
</form>

<form id="option3">
<input type="checkbox" name="Color" value="School Color">The skirt is a solid school color.
<br>
<input type="checkbox" name"Length" value="Length">The skirt is not shorter than your fingertip.
</form>

<form id="option4">
<input type="checkbox" name="Color" value="School Color">The shirt is a solid school color.
<br>
<input type="checkbox" name="Collar" value="Collar">The shirt has a collar or a turtleneck.
<br>
<input type="checkbox" name="Tuck" value="Tuck">The shirt is long enough to be tucked in.
<br>
<input type="checkbox" name="Logo" value="Logo">The shirt has no logos-Baird logo is accepted.
</form>

<form id="option5">
<input type="checkbox" name="Color" value="School Color">The belt is a solid school color.
<br>
<input type="checkbox" name="Decorations" value="Decorations">The belt has no studs or decorations.
<br>
<input type="checkbox" name="Buckle" value="Buckle">The belt buckle is solid.
<br>
<input type="checkbox" name="Excess" value="Excess">The belt has no excess length (does not hang down).
</form>

<form id="option6">
<input type="checkbox" name="Color" value="School Color">Hair accessories are a solid school color.
</form>

<form id="option7">
<input type="checkbox" name="Color" value="School Color">The shoes and laces are a solid school color.<br>
<input type="checkbox" name="Strap" value="Strap">If the shoes are sandals, they have a back strap.<br>
<input type="checkbox" name="Style" value="Style>The shoes are not high heels, platforms, or steel-toed.
</form>

и здесь css и javascript:

<head>
<style>
#option1 {
display: none;
}
#option2 {
display: none;
}
#option3 {
display: none;
}
#option4 {
display: none;
}
#option5 {
display: none;
}
#option6 {
display: none;
}
#option7 {
display: none;
}
</style>

<script language="javascript">
// simple <select> / onchange

function test(e) {
    var i = e.selectedIndex;
   if (i == 1) document.querySelector("#option1").style.display=
"block";
   if (i == 2) document.querySelector("#option2").style.display=
"block";
   if (i == 3) document.querySelector("#option3").style.display= "block";
   if (i == 4) document.querySelector("#option4").style.display=
"block";
   if (i == 5) document.querySelector("#option5").style.display=
"block";
   if (i == 6) document.querySelector("#option6").style.display=
"block";
   if (i == 7) document.querySelector("#option7").style.display=
"block";
}
</script>
</head>

я понимаю это много, но может ли кто-нибудь предложить совет, чтобы показать первый набор флажков, несмотря ни на что, и почему они не откроются? Любая помощь приветствуется!

  • 1
    Почему бы вам не показать нам демо в jsfiddle!
Теги:
checkbox

3 ответа

1

Я лично предлагаю:

function test(el){
    // gets all form-elements:
    var forms = document.querySelectorAll('form');

    // iterates over all the form-elements, hiding them
    [].forEach.call(forms, function(a){
        a.style.display = 'none';
    });

    // retrieves the form-element with the given 'id', and shows it:
    document.querySelector('#option' + (el.selectedIndex)).style.display = 'block';
}

Демо-версия JS Fiddle.

Вышеизложенное требует довольно современного браузера (но поскольку вы уже используете document.querySelector(), я беру совместимость как заданный), чтобы использовать document.querySelectorAll() и Array.prototype.forEach().

Рекомендации:

  • 0
    Я могу понять других, но метод [].forEach.call я не могу получить. Можете ли вы объяснить эту часть?
0

В вашем JavaScript содержится код для показа соответствующего div. Он не содержит кода для скрытия ранее показанного содержимого.

Вы можете увидеть ответ на следующий вопрос, чтобы получить представление.

Как скрыть и показать контент на основе выпадающего списка

0
<head>
<style>
#option1 {
display: none;
}
#option2 {
display: none;
}
#option3 {
display: none;
}
#option4 {
display: none;
}
#option5 {
display: none;
}
#option6 {
display: none;
}
#option7 {
display: none;
}
</style>

<script language="javascript">
// simple <select> / onchange

function test(e) {

  // start init div area.
  document.getElementById("option1").style.display="none";
  document.getElementById("option2").style.display="none";
  document.getElementById("option3").style.display="none";
  document.getElementById("option4").style.display="none";
  document.getElementById("option5").style.display="none";
  document.getElementById("option6").style.display="none";
  document.getElementById("option7").style.display="none";
  // end init div area.

  // view selected area. ( easy way from jquery. - selector )

   var i = e.selectedIndex;
     if (i == 1) document.getElementById("option1").style.display="block";
     if (i == 2) document.getElementById("option2").style.display="block";
     if (i == 3) document.getElementById("option3").style.display="block";
     if (i == 4) document.getElementById("option4").style.display="block";
     if (i == 5) document.getElementById("option5").style.display="block";
     if (i == 6) document.getElementById("option6").style.display="block";
     if (i == 7) document.getElementById("option7").style.display="block";
}
</script>
</head>

<select id="select" onchange="test(this)">
    <option>Clothing Type</option>
    <option>Pants</option>
    <option>Shorts</option>
    <option>Skirts</option>
    <option>Shirts,Blouses</option>
    <option>Belts</option>
    <option>Hair Adornments</option>
    <option>Shoes</option>
</select>

<form id="option1">
<input type="checkbox" name="Color" value="School Color">The pants are a solid school color.
<br>
<input type="checkbox" name="Hem" value="Hem">The pants are hemmed.
<br>
<input type="checkbox" name="Size" value="Size">The pants are not to big or small.
<br>
<input type="checkbox" name="Style" value="Style">The pants are not sweats or jogging style.
</form>

<form id="option2">
<input type="checkbox" name="Color" value="School Color">The shorts are a solid school color.
<br>
<input type="checkbox" name="Length" value="Length">The shorts are not shorter than your fingertip, or longer than your knees. (Capris okay.)
</form>

<form id="option3">
<input type="checkbox" name="Color" value="School Color">The skirt is a solid school color.
<br>
<input type="checkbox" name"Length" value="Length">The skirt is not shorter than your fingertip.
</form>

<form id="option4">
<input type="checkbox" name="Color" value="School Color">The shirt is a solid school color.
<br>
<input type="checkbox" name="Collar" value="Collar">The shirt has a collar or a turtleneck.
<br>
<input type="checkbox" name="Tuck" value="Tuck">The shirt is long enough to be tucked in.
<br>
<input type="checkbox" name="Logo" value="Logo">The shirt has no logos-Baird logo is accepted.
</form>

<form id="option5">
<input type="checkbox" name="Color" value="School Color">The belt is a solid school color.
<br>
<input type="checkbox" name="Decorations" value="Decorations">The belt has no studs or decorations.
<br>
<input type="checkbox" name="Buckle" value="Buckle">The belt buckle is solid.
<br>
<input type="checkbox" name="Excess" value="Excess">The belt has no excess length (does not hang down).
</form>

<form id="option6">
<input type="checkbox" name="Color" value="School Color">Hair accessories are a solid school color.
</form>

<form id="option7">
<input type="checkbox" name="Color" value="School Color">The shoes and laces are a solid school color.<br>
<input type="checkbox" name="Strap" value="Strap">If the shoes are sandals, they have a back strap.<br>
<input type="checkbox" name="Style" value="Style>The shoes are not high heels, platforms, or steel-toed.
</form>
  • 0
    добавить некоторые объяснения здесь.
  • 0
    Кроме того, вам не хватает закрывающей кавычки в атрибуте значения последнего элемента ввода. Этого также не было в оригинальном вопросе.
Показать ещё 1 комментарий

Ещё вопросы

Сообщество Overcoder
Наверх
Меню