鼠标按下时播放声音
如何在 JavaScript 中创建一个函数,使特定元素中的 onmousedown
执行此操作:
document.getElementById('KeyOfC').play();
并在 mouseup
上执行此操作:
document.getElementById('KeyOfC').pause();
document.getElementById('null').play();
我很高兴获得任何答案,因为我JavaScript 新手。
How do I make a function in JavaScript that onmousedown
in a specific elemtent executes this:
document.getElementById('KeyOfC').play();
and on mouseup
executes this:
document.getElementById('KeyOfC').pause();
document.getElementById('null').play();
I'd be happy for any answers, as I'm new to JavaScript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将这些触发器绑定到元素(在本例中,它的
id
为foo
):如果您想指定多个
id
(根据您的评论),您需要一个 JavaScript 库来执行此操作。我推荐 jQuery:如果你已经完成了 CSS,你可以使用 CSS 规则作为 jQuery 选择器,如
.ClassName、#your_id 等
。You can just bind those triggers to the element (in this case it has an
id
offoo
):If you want to specify multiple
id
s (from your comment), you'd need a JavaScript library which does this. I'd recommend jQuery:If you've done CSS, you can use CSS rules as jQuery Selectors, like
.ClassName, #your_id, etc.
.