- <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>
posted @
2014-03-16 12:07
Tsy_blog
阅读(
787)
评论()
收藏
举报