您的位置:首页技术文章
文章详情页

前端 - html5 audio不能播放

浏览:37日期:2023-01-31 17:24:35

问题描述

问题解答

回答1:

代码没问题,请自行查看:1、浏览器是否支持HTML52、音频文件路径是否正确,音频文件格式是否正确3、变量是否冲突等

回答2:

应该是你的资源的问题, 我在本地调试没问题

<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title></head><body> <script> var audio = document.createElement(’audio’); var source = document.createElement(’source’); audio.setAttribute(’controls’, ’controls’); audio.innerHTML = '您的浏览器不支持 audio 标签。'; source.src = ’./hello.mp3’; source.setAttribute(’type’,’audio/mpeg’); audio.appendChild(source); document.body.appendChild(audio); window.addEventListener(’click’, function(){audio.play(); }); </script></body></html>

运行结果:(注意红框中不是0:00)

前端 - html5 audio不能播放

标签: Html5
相关文章: