Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

163
Vistas
How to display in javascript only the current selected data from HTML select box?

The following code displays results data from the table according to the choice from HTML select box, but it appends the new results to the previous one. How to display only the current selected data?

<script>
  function GetSelectedText() {
    const trips = [
      ["AAA", "London"],
      ["AAA", "Manchester"],
      ["AAA", "Oxford"],
      ["BBB", "Paris"],
      ["BBB", "Lyon"],
      ["BBB", "Marsylia"],
      ["CCC", "Berlin"],
      ["CCC", "Hamburg"],
      ["CCC", "Bonn"]
    ]
    var oSel = document.getElementById("country");
    var wybrano = oSel.options[oSel.selectedIndex].text;
    var parent = document.getElementById("wybrano");
    for (var i = 0; i < 9; i++) {
      if (wybrano == trips[i][0]) {
        divy = document.createElement("div");
        divy.innerHTML = '<p>' + i + ' ' + trips[i][1] + '</p>';
        document.body.appendChild(divy);
      }
    }
  }
</script>
<form id="Forma">
  <select id="country" onChange="GetSelectedText()">
    <option value="0"> country </option>
    <option value="1"> AAA </option>
    <option value="2"> BBB </option>
    <option value="3"> CCC </option>
  </select>
</form>
<div id="content"></div>

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

In your code, you didn't append the results to content div, but you append it to body instead. It's better to wrap all the result in a div. On every OnChange event, simply reset the html/clear the div.

<script>
function GetSelectedText() {
    const trips = [
    ["AAA","London"],["AAA","Manchester"],["AAA","Oxford"],
    ["BBB","Paris"] ,["BBB","Lyon"]      ,["BBB","Marsylia"],
    ["CCC","Berlin"],["CCC","Hamburg"]   ,["CCC","Bonn"]
      ]   
  var oSel = document.getElementById("country");
  var wybrano = oSel.options[oSel.selectedIndex].text;  
  
  var content = document.getElementById('content');
  
  //Remove Previous Content
  //const myNode = content;
  //while (myNode.firstChild) {
  //       myNode.removeChild( myNode.lastChild );
  //} 
  //while (myNode.lastElementChild) {
  //       myNode.removeChild(myNode.lastElementChild);
  //}
  //Or Simply
  content.innerHTML = "";
  
  for (var i=0; i < 9; i++) { 
    if ( wybrano == trips[i][0]) {
      divy = document.createElement("div");
      divy.innerHTML = '<p>'+i+' '+trips[i][1]+'</p>';
      content.appendChild( divy );      
    }
  } 
} 
</script>
<form id="Forma">
    <select id="country" onChange="GetSelectedText()">
    <option value="0"> country  </option>
    <option value="1"> AAA </option>
    <option value="2"> BBB </option>
    <option value="3"> CCC </option>
    </select>
</form>  
<div id="content">
</div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

Here is another slightly different approach. I pre-process the trips array first into an object that will then return bits of HTML to be joined and put into the content.innerHTML:

const trips = [
    ["AAA","London"],["AAA","Manchester"],["AAA","Oxford"],
    ["BBB","Paris"] ,["BBB","Lyon"]      ,["BBB","Marsylia"],
    ["CCC","Berlin"],["CCC","Hamburg"]   ,["CCC","Bonn"]
  ].reduce((a,[k,t],i)=>((a[k]=a[k]||[]).push("<p>"+i+" "+t+"</p>"),a),{}),
  oSel  = document.getElementById("country"),
  content=document.getElementById("content");

function GetSelectedText() {    
  content.innerHTML = (trips[oSel.options[oSel.selectedIndex].text] ?? ["no selection made"]).join("");
} 
<form id="Forma">
    <select id="country" onChange="GetSelectedText()">
    <option value="0"> country  </option>
    <option value="1"> AAA </option>
    <option value="2"> BBB </option>
    <option value="3"> CCC </option>
    </select>
</form>  
<div id="content">
</div>

about 4 years ago · Juan Pablo Isaza Denunciar

0

I. tried to clear the results of the previous selections by inneHTML and/or removing the child element with the folowing code before the for loop ie. for (var i=0; i < 9; i++) responsible for the display (but not succeded yet) :

  document.getElementById("content").innerHTML = ""; 
  const myNode = document.getElementById("content");
  while (myNode.firstChild) {
         myNode.removeChild( myNode.lastChild );
  } 
  while (myNode.lastElementChild) {
         myNode.removeChild(myNode.lastElementChild);
  }
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda