我的函数应该复制元素内部两次,并附加它们,但由于某种原因,jQuery 在第一次附加后停止执行。我不懂为什么。
$(".testowyUl").prepend(function () {
var $temp = $(this).children().clone();
var $temp2 = document.createElement("div");
$temp2.append($temp);
$temp2.append($(this).children().clone());
return $temp2.children();
});