0

#a sortable div でsome<li class='A'>または class='B' または class='C' をエコーし​​ます。次に、ユーザーはそれらを #b ソート可能な div に移動します。#b では、クラスの降順アルファベット順(C->B->A) で<li> 自動的にソートし、2 回目はのコンテンツ( ) のアルファベット順でソートする必要があります。<li><li class='X'>content</li>

でスクリプトを作成するにはどうすればよい<head>ですか?

4

1 に答える 1

0

jQuery UI has nice sortable stuff. Here are the demos.

Try using the update event to enforce your ordering.

$( ".selector" ).sortable({
 update: function(event, ui) {
   $("find the LIs you want").sort(
     function(a, b){
       var aName = a.name.toLowerCase();
       var bName = b.name.toLowerCase(); 
       return ((aName < bName) ? -1 : ((aName > bName) ? 1 : 0));
    });
 }
});

The sort code is from this answer.

于 2012-06-01T12:21:39.390 に答える