我想顯示/隱藏父元素相對於其子類中的類具有。 這是我想要的。我想通過使用動態生成的類來顯示隱藏元素
<p><a href="<?php echo site_url('mp3/coins.mp3');?>" title="hello" class="sm2_button" id="song1">play</a> Dear Yesterdays </p>
<p><a href="<?php echo site_url('mp3/fancy-beer-bottle-pop.mp3');?>" title="hello" class="sm2_button" id="song2">play</a> song 2</p>
<p><a href="<?php echo site_url('mp3/coins.mp3');?>" title="hello" class="sm2_button" id="song1">play</a> Dear Yesterdays </p>
<p><a href="<?php echo site_url('mp3/fancy-beer-bottle-pop.mp3');?>" title="hello" class="sm2_button" id="song2">play</a> song 2</p>
<script>
$(document).ready(function(){
$('.play p').hide();
$('.play p:first').show();
$('.play p a').each(function(){
var attr = $(this).attr('class');
var cls = attr.split(' ');
if(cls[1]=='sm2_playing' || cls[1]=='sm2_paused')
{
// display none to all .play p tags except the one with those classes sm2_playing or sm2_paused
}
});
});
</script>
請幫幫我。 我正在使用soundmanager2。我只想播放歌曲,只播放歌曲。