3

我有这个部分:

<div id="weather">
<h4><i class="icon-chevron-down"></i> Weather</h4>

和代码:

$('#weather h4').click(function (){
    $('#weather .entries').toggle();
    $('#weather .icon-chevron-down').toggleClass('icon-chevron-right');
});

jsbin1

它不起作用,但如果我改变图标雪佛龙的位置,它会起作用:

jsbin2

这是一个错误还是我做错了什么?

4

1 回答 1

1

这个正在工作:

http://jsbin.com/omerep/1/edit

$('#weather h4').click(function (){
    $('#weather .entries').toggle();
    $(this).find('i').toggleClass('icon-chevron-right icon-chevron-down', 200);
});
于 2013-04-25T10:00:22.700 回答