您好,我在客户端编程和 html 方面是新手,我正在尝试在 firefox 和其他浏览器中执行以下行,代码应该播放声音,问题是代码可以在 IE 和 Chrome 上播放声音,但不能在Firefox 这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Untitled 1</title>
<script type="text/javascript">
function playsound()
{
var sound= document.getElementById("check");
sound.play();
}
</script>
</head>
<body>
<audio id = "check" preload = "auto">
<source src = "check.mp3" type = "audio/mpeg"></audio>
<input type="button" onclick="playsound()" value="play">