作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在工作中用来惹恼同事的音板。它有多个按钮,用于播放或停止声音。现在每个按钮都有自己的脚本来播放声音。所以我在页面上有多达 47 个声音,并且必须为每个声音编写这个脚本。我想清理它并拥有一个适用于所有这些的更智能的脚本。我的按钮看起来像:
<button onclick="javascript:toggleSound1();">I don't know what we're yelling about.</button>
然后我就有了音频元素的定义:
<audio id="sound1" src="sounds/dontknowwhatwereyellingabout.wav"></audio>
和脚本:
<script type="text/javascript">
function toggleSound1() {
var audioElem = document.getElementById('sound1');
if (audioElem.paused)
audioElem.play();
else
audioElem.pause(); audioElem.currentTime = 0;
}
</script>
所以在我看来,如果我可以在每个按钮的按下时定义“sound1”,那么相同的脚本应该适用于每个按钮。现在我必须定义“sound1”“sound2”“sound3”等等,并为每个声音指定一个新的“togglesound”。
最佳答案
您可以重写toggleSound1
来接受参数:
function toggleSound(num) {
var audioElem = document.getElementById('sound' + num); // append the number to "sound" (sound1, sound2, etc.)
if (audioElem.paused) {
audioElem.play();
} else {
audioElem.pause();
}
audioElem.currentTime = 0;
}
然后要使用它,您只需将数字传递给函数即可:
<button onclick="javascript:toggleSound(1);">I don't know what we're yelling about.</button>
关于javascript - 一个脚本可实现多个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37351958/
我是一名优秀的程序员,十分优秀!