如何在网页中创建蜂鸣声?
我想在网页中的服务器错误上创建蜂鸣声。我已经搜索并阅读了以下页面以在网页上显示声音。 http://www.phon.ucl.ac.uk/home /mark/audio/play.htm 但我不能要求用户安装插件和其他东西。我需要在电脑扬声器上发出两声蜂鸣声。我尝试使用 System.out.print("\\007"); 和 Toolkit.getDefaultToolkit().beep(); 但没有任何效果。在我的 JSP 中,我以这种方式调用:
<%
Toolkit.getDefaultToolkit().beep();
System.out.print("\\007");
%>
有什么方法可以生成声音吗?
I want to create a beep on server error in a webpage. I have searched and read the pages below on to display sound on webpage.
http://www.phon.ucl.ac.uk/home/mark/audio/play.htm
But i can't ask users to install plug ins and other stuff. I need to generate two beep on PC speaker. I have tried to use System.out.print("\\007");
and Toolkit.getDefaultToolkit().beep();
but nothing is working. In my JSP i Called in this way:
<%
Toolkit.getDefaultToolkit().beep();
System.out.print("\\007");
%>
Is there any way i can generate sound?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是你想做一些客户端的事情,我能想到的唯一方法是使用带有蜂鸣声的javascript警报功能(但这取决于用户的操作系统和声音方案)。
Thing is you wanted to do something that is client side, which the only way I can think of is to use the javascript's alert function which comes with a beep sound (but this depends on the user's OS and sound scheme).