하위 클래스의 클래스와 관련하여 부모 요소를 표시하거나 숨기려고합니다. 내가 원한다.동적으로 생성 된 클래스를 사용하여 hide 요소를 표시하려고합니다.
<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를 사용하고 있습니다. 그리고 나는 연주하는 것들만 표시하면서 노래를 하나씩 연주하고 싶습니다.