gpt4 book ai didi

javascript - firefox 不播放声音

转载 作者:行者123 更新时间:2023-11-30 13:21:05 25 4
gpt4 key购买 nike

你好,我是客户端编程和 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">

最佳答案

Firefox 不支持 MP3 格式作为音频源。如果您添加第二个 OGG 格式的源文件,该脚本应该也可以在 Firefox 中运行。 See this Link for more info

关于javascript - firefox 不播放声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10241212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com