我想要做的是让它在页面加载时播放 highpitchsound.wav(或 .mp3)x 秒,用户在页面加载时在警报框中定义。
在警报框中有一个文本框和一个“确认”按钮。默认文本是 5 代表 5 秒,或 5000 代表 5000 毫秒。
我以前使用过 jquery 的间隔,在这里和那里多次在 html5 中弄乱了音频,不知道如何将两者结合起来,也不知道如何制作自定义警报框 onload。
<html>
<head>
<title>Audio Play Interval</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
});
</script>
</head>
<body>
<audio autoplay="true">
<source src="sounds/highpitchsound.mp3" type="audio/mpeg" />
<source src="sounds/highpitchsound.wav" type="audio/wav" />
<source src="sounds/highpitchsound.ogg" type="audio/ogg" />
Your browser does not support the audio element.
</audio>
</body>
</html>