在点击事件上使用纯 JavaScript 播放声音可以通过以下步骤实现:
<button id="playButton">点击播放声音</button>
const playButton = document.getElementById('playButton');
playButton.addEventListener('click', playSound);
Audio
对象来播放声音。function playSound() {
const audio = new Audio('path/to/sound.mp3');
audio.play();
}
在上述代码中,将 'path/to/sound.mp3'
替换为你实际的声音文件路径。
这样,当用户点击按钮时,就会触发 playSound
函数,从而播放声音。
对于这个问题,腾讯云没有特定的产品或链接与之相关。这是一个基本的 JavaScript 功能,与云计算无关。
领取专属 10元无门槛券
手把手带您无忧上云