- <html>
- <head>
- <title>sound test</title>
- <scripttype="text/javascript"src="js/jquery.js"></script>
- <scripttype="text/javascript">
- $(function(){
- $('a.click').click(function(){
- $('embed').remove();
- $('body').append('<embed src="notify.wav" autostart="true" hidden="true" loop="false">');
- });
- $('a.hover').mouseover(function(){
- $('embed').remove();
- $('body').append('<embed src="notify.wav" autostart="true" hidden="true" loop="false">');
- });
- });
- </script>
- </head>
- <body>
- <p><ahref="#"class="click">点击后发声提示</a></p>
- <p><ahref="#"class="hover">鼠标在上面发声提示</a></p>
- </body>
- </html>
转载于:https://www.cnblogs.com/tsyblog/p/3603220.html