彼女は私のhtmlとjQueryです。フィルターdivの「ソート」「ボタン」を押すと、クラス名でアルファベット順にソートする機能が必要です。現在、他のすべてを非表示にする「緑」で他のすべてを非表示にすることができます。しかし、しかし、それらを並べ替える能力が必要です。
<div id='filters'>
<a href='#' id ="sort">Sort</a>
<a href='#' id='blue'>blue</a>
<a href='#' id='green'>green</a>
<a href='#' id='yellow'>yellow</a>
</div
<div id="box">
<ul id="filter">
<li class="green"></li>
<li class="blue"></li>
<li class="yellow"></li>
<li class="blue"></li>
<li class="yellow"></li>
</ul>
</div>
$('#filters a').click(function(e){
e.preventDefault();
var filter = $(this).attr('id');
$('#box ul li').show();
$('#box ul li:not(.' + filter + ')').hide();
});