如何使用jQuery在此脚本中添加新行?

时间:2016-06-07 16:42:01

标签: jquery html

我想像这样的样本输出:

苹果

香蕉

樱桃

但是这个脚本给了我这个输出: Apple Banana Cherry

jQuery(function( $ ) {

    $(function() {
        $( ".listLi", ".rightSidebar" ).sort(function( a, b ) {
            return $( a ).text().toLowerCase() > $( b ).text().toLowerCase(); 

        }).appendTo( ".rightSidebar" );

    });

});

0 个答案:

没有答案