使用此代码,我得到了一个列表项数组:

var column = this.children().slice(0, columnLength).remove()


我希望将它们包装在ul标签中,以便以后可以像这样应用它们:

this.html(filler);


我希望这能奏效。

filler = filler.add(column.wrapAll('<ul />'))


完整代码:

jQuery.fn.splitList = function(num) {
    var columnLength = Math.ceil(this.children().length/num), filler = $j();
    while(this.children().length > 0){
      var column = this.children().slice(0, columnLength).remove()
      filler = filler.add(column.wrapAll('<ul />'))
      console.log(filler);
    }
    this.html(filler);
};

最佳答案

是否可以满足您的要求:

filler = filler.add($("<ul></ul>").append(column));


我假设column是LI的Array

07-24 14:49