这个TIPS其实很简单的,实现的效果是:当鼠标移动到链接上时,则可以发出声音,
其实很简单,代码如下:
<p><a href="#" class="click">Click here for sound effect</a></p> <p><a href="#" class="hover">Hover here for sound effect</a></p>
$(function(){
$('a.click').click(function(){
$('embed').remove();
$('body').append('<embed src="click.wav" autostart="true" hidden="true" loop="false">'); });
$('a.hover').mouseover(function()
{
$('embed').remove();
$('body').append('<embed src="hover.wav" autostart="true" hidden="true" loop="false">');
});
});