用Jade对编号列表进行排序

时间:2014-06-29 19:58:49

标签: jquery jquery-mobile jquery-plugins pug

我想通过按下按钮对编号列表进行排序,但过滤器应该保持使用状态。订单并不重要。我的愿望只是以不同的方式对其进行排序。我在这里找到一个例子来对列表“http://jsfiddle.net/abdennour/SjWXU/”进行排序,但是我没有办法将它用于我在玉器中的列表。也许有人可以帮助我使用按钮和代码。 要获得列表创意的印象: http://www.oldie-ponderosa.de/sort.png 我在index.jade中的代码:

block content
ol#actions(data-role="listview",data-filter="true", data-filter-placeholder="Filter", data-inset="true")
    - each action in actions
        li(id=action._id)
            a(href="/edit/#{action._id}")
                h3= action.subject
                p
                    span= action.part1
                    span , &nbsp
                    span= action.part2
                    span , &nbsp
                    span= action.part3
                    span , &nbsp
                a(href="/delete/#{action._id}",data-theme="a", data-icon="delete") Delete

1 个答案:

答案 0 :(得分:0)

each article in page.articles.reverse()

只需使用.reverse(),这是一个js函数。 jade是一个js程序。