This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ejercicio 288: Uso del evento onchange sobre el elemento select de HTML. | |
function seleccionarLenguaje(){ | |
let cbxLenguajes = document.getElementById('cbxLenguajes'); | |
let lenguaje = cbxLenguajes.value; | |
document.getElementById('lblLenguajeSeleccionado').innerText = `Ud. ha seleccionado el lenguaje ${lenguaje}.`; | |
} |