这是一个小的 html 文件,它创建一个计时器图像并在我单击它时播放计时器音乐。
<html>
<head>
<script language="javascript" type="text/javascript">
function playSound(soundfile) {
document.getElementById("dummy").innerHTML = "<embed src=\"" + soundfile + "\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
}
</script>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td align="center" valign="middle">
<a href="#" onclick="playSound('timer.mp3');">
<img src="timer.png"/>
</a>
</td>
</tr>
</table>
<span id="dummy"></span>
</body>
</html>
我是 JavaScript 新手,但这是我想要的:
当用户单击图像时,应不间断地播放音乐,直到用户再次单击图像。
我该怎么做呢?