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

189
Vistas
Getting values from checkboxes - javascript

I have a problem getting values from checkbox fields, I tried this method but it only works on radio type fields.

function writee(){
    var x = document.forms["formz"].music.value
    oo=window.open(" ","tab","width=300,height=350")
    oo.document.open()
    oo.document.write(x)
}
<form name="formz">
    What music do you prefer:
    <input type="checkbox" name="music" value="rock" > Rock
    <input type="checkbox" name="music" value="techno"> Techno
    <input type="checkbox" name="music" value="pop"> Pop
</form>
<button onclick="writee()">button</button>

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

0

function writee(){
    var markedCheckbox =document.querySelectorAll('input[type="checkbox"]:checked');
  let checkedValues = '';
    for (var checkbox of markedCheckbox) {
        checkedValues += checkbox.value + ' ';
    }
  
  console.log(checkedValues);
  // oo=window.open(" ","tab","width=300,height=350")
  // oo.document.open()
  // oo.document.write(x)
}
<form name="formz">
    What music do you prefer:
    <input type="checkbox" value="rock" > Rock
    <input type="checkbox" value="techno"> Techno
    <input type="checkbox" value="pop"> Pop
</form>
<button onclick="writee()">button</button>

about 4 years ago · Juan Pablo Isaza Denunciar

0

  function writee() {
    var checkboxes = Array.from(document.forms["formz"].music);
    var checked = checkboxes.filter((item) => item.checked);
    const values = checked.map((item) => item.value);
    console.log(values);
  }
<form name="formz">
  What music do you prefer:
  <input type="checkbox" name="music" value="rock" /> Rock
  <input type="checkbox" name="music" value="techno" /> Techno
  <input type="checkbox" name="music" value="pop" /> Pop
</form>
<button onclick="writee()">button</button>

I just modified it a little bit.

  1. Get all the related checkbox from form using form key
  2. Convert them to Javascript array using Array.from() so that we can use array methods
  3. Filter all the checkbox that are checked
  4. Get the values of checked checkbox and log it. (you can use these values according to your own need

i hope this will answer the question

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