jquery slibings选取同级其他元素

jquery选取同级其他元素可以使用slibings方法,end方法可以清除之前的链式操作,相当于重新开始。
 
 
<script type="text/javascript">
$(function(){
    $("#downloadchartsright .chartstitleopt,#downloadchartsleft .chartstitleopt").click(function(){
        $(this).siblings().removeClass('underline').end().addClass('underline');
    });
})
</script>
 
 
转自:http://www.cnblogs.com/tanteng/p/3404506.html

你可能感兴趣的:(jquery slibings选取同级其他元素)