我正在尝试更改位于 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>