O código a seguir retorna 'indefinido' ...
$('select').change(function(){
alert($(this).data('id'));
});
<select>
<option data-id="1">one</option>
<option data-id="2">two</option>
<option data-id="3">three</option>
</select>
É melhor usar $ (this) .find (': selected') ou $ (this) .children ('option: selected')?
—
precisa
Veja esta pergunta: stackoverflow.com/questions/648004/…
—
Jordan Brown