如何根据selectedIndex的值做出决定

时间:2013-11-30 03:58:12

标签: javascript html5 html5-audio html5-apps

我想根据select标签中选择的选项制作音频HTML标签来更改其来源,我该怎么做?

我在index.html文件中考虑这样的事情:

<script src="hola.js"></script>
<form name="datos">
    <select id="idioma">
        <option value="es">Español</option>
        <option value="en">Inglés</option>
    </select>
    <br />
    <button id="boton">Cambiar idioma</button>

</form>
<audio controls="controls" id="audio">Audio no disponible, para mejor funcionamiento, utilize Mozilla Firefox</audio>   

,这在hola.js文件中:

var button=document.getElementById("boton");
var idioma=document.getElementById("idioma");
var audio=document.getElementById("audio");
var lang=document.datos.idioma.options[idioma.selectedIndex].value;

button.addEventListener("click",function(){

if(lang="es"){
    audio.setAttribute("src", "audio/es.ogg");
}else if(lang="en"){
    audio.setAttribute("src", "audio/en.ogg");
}
});

1 个答案:

答案 0 :(得分:0)

在事件监听器中移动lang变量声明:

var button = document.getElementById("boton"),
    idioma = document.getElementById("idioma"),
    audio = document.getElementById("audio");

document.getElementsByTagName('body')[0].appendChild(audio);

button.addEventListener("click", function () {
    var lang = document.datos.idioma.options[idioma.selectedIndex].value;

    if (lang = "es") {
        audio.setAttribute("src", "audio/es.ogg");
        audio.play();
    } else if (lang = "en") {
        audio.setAttribute("src", "audio/en.ogg");
        audio.play();
    }
});