我最近才开始编码。事实上,昨天。现在我正在尝试编写一个Web应用程序,当按下该按钮时,会显示一些按钮,当点击播放歌曲时。但是当我尝试点击按钮时,它什么也没做。我认为它与chrome有关,不允许使用内联java脚本,但我不是百分百肯定。
这是我的代码
HTML:
<!DOCTYPE html>
<html>
<head>
<script>
var song = new Audio();
song.src = "SoundsOfSilence.mp3";
var song2 = new Audio();
song2.src = "ChildrenPlaying.mp3";
</script>
</head>
<body>
<nav>
<a href="#" onclick="song.play()">Sounds Of Silence</a>
<a href="#" onclick="song2.play()">Children Playing</a>
</nav>
</body>
</html>
答案 0 :(得分:0)
尝试使用audio属性标记。 如:
<audio controls autoplay>
<source src="SoundofSilence.ogg" type="audio/mpeg">
<source src="ChildrenPlaying.mp3" type="audio/mpeg">
</audio>