2

h3 内にあるスパンのクラスを変更しようとしていますが、変更できません。ここに私が達成しようとしていることへのリンクがあります: http://jsfiddle.net/WPxG4/9/

コード:

jQuery(document).ready(function() {
    $('h3').click(function() {
        $(this).next('ul').toggle();
        $(this).next('span').toggleClass('special1', 'special');
        return false;
    }).next().hide();
});

HTML:

<h3><span class="special"></span><a href="#">Heading 1</a></h3>
<ul>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
    <li><a href="#">List one two there</a></li>
</ul>

</p>

4

1 に答える 1

4

使用し$(this).find('span') ない $(this).next('span')

于 2012-04-12T15:03:46.190 に答える