我正在尝试在 html 中播放声音。
我audio
将标签放入 html 并play
为其定义了一个函数
但是当我使用.play()
js的功能时,jquery返回错误。
audio.play() is not a function.
当我删除 jquery 文件时,声音正在工作。
我怎样才能清楚该函数不是 jquery 的?
function playblop()
{
var ab = document.getElementById('blop').play();
}