Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/09/2014, 10:20
Avatar de berkeleyPunk
berkeleyPunk
 
Fecha de Ingreso: febrero-2013
Ubicación: México :C
Mensajes: 565
Antigüedad: 11 años, 11 meses
Puntos: 22
De acuerdo Respuesta: ¿Cómo obtener valor de atributo DATA (HTML5)?

Encontré la solución. He aquí el script que funciona, que es una variación de la respuesta, encontrada en este sitio:

Código HTML:
Ver original
  1. <select id="test" onchange='x(this.value)'>
  2.         <option value="0" data-label="HongKong">Hong Kong</option>
  3.         <option value="1" data-label="China">China</option>
  4.     </select>

Código Javascript:
Ver original
  1. var select = document.getElementById('test');
  2.  
  3.         function x(dato)
  4.         {
  5.             alert( select.options[dato].getAttribute('data-label') );
  6.         }

Saludos!