- 1
Hola a todos, alguien me puede ayudar a hacer que funcione este reproductor de JS?
5 Réponses
+ 2
Could ypu facilitate and post it in the code playground?
(Podias facilitar um pouco e postar o código no Playground.)
+ 1
Where is the code?
(Onde está o código?)
+ 1
viejo, crea un nuevo código en el code playground , y proporcionanos el enlace. así es difícil analizarlo. yo uso mi teléfono y se ve todo muy denso.
0
function cambiarTrack(track) { var path = track.getAttribute("path") viejo_audio = document.getElementById("reproductor") audio_padre = viejo_audio.parentNode audio_padre.removeChild(viejo_audio) nuevo_audio = document.createElement("audio") nuevo_audio.setAttribute("id","reproductor") nuevo_audio.setAttribute("controls", "controls") nuevo_audio.setAttribute("autoplay", "autoplay") source = document.createElement("source") source.setAttribute("src", path) source.setAttribute("type", "audio/mpeg") source.setAttribute("id", "reproductorSource") nuevo_audio.appendChild(source) audio_padre.appendChild(nuevo_audio) } function cargarReproductor() { var select = document.getElementById("selectTrack") var path = select.options[0].getAttribute("path") nuevo_audio = document.createElement("audio") nuevo_audio.setAttribute("id","reproductor") nuevo_audio.setAttribute("controls", "controls") source = document.createElement("source") source.setAttribute("src", path) source.setAttribute("type", "audio/mpeg") source.setAttribute("id", "reproductorSource") nuevo_audio.appendChild(source) padre = document.getElementById("reproductorBox") padre.appendChild(nuevo_audio)
0
html conde
<!DOCTIPE html> <html lang="es"> <head> <script language="javascript" type="text/javascript" src="funcionesReproductor.js"> </script> </head> <body> <div id="reproductorBox"> </div> <select id = "selectTrack" onchange="cambiarTrack(this.options[this.selectedIndex]);"> <option path="E:\Musica\El cuarteto de Nos\Invierno del 92 - El Cuarteto de Nos.mp3">Invierno del 92</option> <option path="E:\Musica\El cuarteto de Nos\El día que Artigas se emborrachó.mp3">El dia que artigas se emborachó</option> <option path="E:\Musica\El cuarteto de Nos\El Cuarteto De Nos - Nada Es Gratis En La Vida.mp3">Nada es gratis en la vida</option> <option path="E:\Musica\El cuarteto de Nos\el cuarteto de nos - miguel gritar(7).mp3">Miguel Gritar</option> </select> <script>cargarReproductor();</script> </body> </html>