Jump to content

Receber mais que um valor no javascript


John Hebert Trindade
Go to solution Solved by John Hebert Trindade,

Recommended Posts

Bom dia a todos.

já fiz várias pesquisas mas infelizmente não consegui encontrar nada, ou minha pesquisa não esta sendo feita da forma correcta.

quero alimentar um select com 3 tipos de dados, até aqui tudo bem, pois fiz da seguinte forma:

<select name="select">
  <option value="valor1" barcode="560001">Valor 1</option>
  <option value="valor2" barcode="560002">Valor 2</option>
  <option value="valor3" barcode="560003">Valor 3</option>
</select>

<button type="submit" onclick="receberValores">Enviar</button>

até aqui tudo a funcionar.

O que gostaria é de receber todos os valores no javascript

Já criei um botão para chamar uma função js e receber os valores, mas não sei como receber o barcode, alguém pode ajudar-me?

function receberValores(){
  const select = document.getElementById('select').value
  const opcaoTexto = select.options[select.selectedIndex].text;
  const opcaoValor = select.options[select.selectedIndex].value;
}

 

Link to comment
Share on other sites

  • Solution

Já consegui resolver da seguinte forma:

function receberValores(){
  const select = document.getElementById('select')
  const opcaoTexto = select.options[select.selectedIndex].text;
  const opcaoValor = select.options[select.selectedIndex].value;
  const opcaoValor = select.options[select.selectedIndex].getAttribute('barcode');
}

 

  • Vote 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.