在jquery中从下到上获取ul和li的id

时间:2013-09-23 05:59:31

标签: javascript jquery html-lists

现在我正在使用jquery从上到下获取ul和li的id。但我无法从下到上获取它。我使用以下代码

 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

 <script type="text/javascript">

        function next_click()
        {
        alert("next");
        var toHighlight = jQuery('.current').next().length > 0 ? jQuery('.current').next() : jQuery('#men_shirt li').first();
        jQuery('.current').removeClass('current');
        toHighlight.addClass('current');
        $('#men_shirt ul li').each(function(i)
        {
           var iid=$(this).attr('id'); 
           alert("sdfsdf"+iid);
        });

        var a=jQuery('li').hasClass('current');
        alert(a);

        if(a=='style')
        {
        set_menuselected('Style');
        }
        } 

</script>

请告知此事

2 个答案:

答案 0 :(得分:1)

使用.get().reverse()请参阅Help

$.each('#men_shirt ul li').get().reverse(),function(i)//use get.reverse method()
{
   var iid=$(this).attr('id'); 
   alert("sdfsdf"+iid);
});

答案 1 :(得分:0)

您可以使用反向方法扩展jQuery:

jQuery.fn.reverse = [].reverse;

然后:

$('#men_shirt ul li').reverse().each(function() {
    ...
});