如何在曲目播放期间添加 CSS 类“playSound”?
jQuery(文档).ready(函数($)
{
var widget = SC.Widget(document.getElementById('soundcloud_widget'));
/*widget.bind(SC.Widget.Events.READY, function()
{
//console.log('准备好了...');
jQuery(".checkSound").removeClass('stopSound').addClass('playSound');
});*/
jQuery('.playSound').click(函数()
{
小部件.toggle();
jQuery(".playSound").addClass('stopSound');
});
jQuery('.stopSound').live(function()
//jQuery(".stopSound").live("click", function()
//jQuery('.stopSound').click(function()
{
jQuery(".stopSound").addClass('playSound').removeClass('stopSound');
});
});