jQuery有内置的倒序功能吗?
下面这段代码肯定是a\b\c顺序显示,能不能简单的处理为显示c b a?
$( 'li ')有没有简单的排序方法?each能不能运行倒序?
[code=HTML]
<ul>
<li> a </li>
<li> b </li>
<li> c </li>
</ul>
<script type= "text/javascript " src= "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js "> </script>
<script type= "text/ecmascript ">
$( 'li ').each(function(){
alert($(this).html());
});
</script>
[/code]
------解决方案--------------------
$('ul> li').get().sort(function(first,second)
{
//在这写你的按什么排序
});