我正在建立一个网站http://directhearingtest.com/并且它工作正常并使用 jquery 单击播放音频文件但是在 safari 浏览器 iPad 中它给出了以下错误TypeError: 'undefined' 不是函数(评估 '$('audio#audio2')[0].play()')我尝试了很多解决方案但没有解决。这是 HTML 脚本<audio id="audio2" > <source src="tunes/500 HZ/20.wav" type="audio/mpeg" ></audio><a id="start_sample" class="text-white font-weight-bold pl-3 pr-3 pt-2 pb-2 p " style="cursor: pointer; background-color:#2e7ed5; border-radius: 25px; border: 6px solid; font-family: sans-serif; ">Play sample tones</a>这是 Jquery 脚本$(document).ready(function(){ $('#start_sample').click(function(){ $('audio#audio2')[0].play(); });});请帮帮我。
添加回答
举报
0/150
提交
取消