gpt4 book ai didi

php - 音频元素在 Safari 5.1 中不起作用

转载 作者:行者123 更新时间:2023-11-30 06:34:01 24 4
gpt4 key购买 nike

我到处搜索我的问题并找到了一些答案,但在我实现它时似乎没有用。

这是我的简单代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Audio Test</title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
play_audio();
});

$(document).on("click", "#play-btn", function(){
play_audio();
});

function play_audio(){
var notify = document.getElementById("sound-notification");
notify.play();
}

</script>

</head>

<body>

<audio id="sound-notification" src="beep.ogg"></audio>

<button id="play-btn">Play</button>

hello world

</body>
</html>

我可以通过两种方式生成音频,一种是在页面加载后立即生成,另一种是在用户单击按钮时生成。

在 FF 和 Chrome 中一切正常,但在 Safari 中却不行(我有 5.1.7 版)

我不确定我是不是做错了什么。

任何帮助将不胜感激。

谢谢。

最佳答案

您应该使用 html5 doctype 使页面将其解释为 HTML5 文档。

<!doctype html>

而不是你用过的东西。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

更新代码

<script type="text/javascript">

$(function() {
$(document).on("click", "#play-btn", function(){
play_audio();
});

function play_audio(){
var notify = document.getElementById("sound-notification");
notify.play();
}

});

</script>

关于php - 音频元素在 Safari 5.1 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15804752/

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