2013-10-23 80 views

回答

0

这是播放/暂停歌曲: http://jsfiddle.net/RGJCf/36/

HTML:

<div id="one" class="bar1"> 
    <i class="play">I tried to tell you</i> 
    <i class="stop">I tried to tell you</i> 
</div> 

CSS:

.stop{ 
    display:none; 
} 

JS:

$("#one").click(function() { 
    if ($('#sound-1').get(0).paused == false) { 
     $('#sound-1').get(0).pause(); 
     alert('music paused'); 
    } else { 
     $('#sound-1').get(0).play(); 
     alert('music playing'); 
    } 
    $('i').toggle(); 
});