nth-child
선택기를 사용하여 3 개 div를 래핑 할 수 .wrapAll
있습니까? 나는 정확한 방정식을 풀 수없는 것 같다.
그래서…
<div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
된다 …
<div>
<div class="new">
<div></div>
<div></div>
<div></div>
</div>
<div class="new">
<div></div>
<div></div>
<div></div>
</div>
</div>
답변
다음과 .slice()
같이으로 할 수 있습니다 .
var divs = $("div > div");
for(var i = 0; i < divs.length; i+=3) {
divs.slice(i, i+3).wrapAll("<div class='new'></div>");
}
여기 에서 데모를 시도해 볼 수 있습니다. 여기서 수행하는 작업은 래핑하고 반복하려는 요소를 가져 와서 .wrapAll()
3 개씩 배치 한 다음 다음 3 개로 이동하는 등의 작업입니다. 한 번에 3 개씩 래핑하고 그러나 마지막에 3, 3, 3, 2가 남아 있습니다.
답변
이 작업을 매우 쉽게 만드는 일반적인 청크 함수를 작성했습니다.
$.fn.chunk = function(size) {
var arr = [];
for (var i = 0; i < this.length; i += size) {
arr.push(this.slice(i, i + size));
}
return this.pushStack(arr, "chunk", size);
}
$("div > div").chunk(3).wrap('<div class="new"></div>');
답변
플러그인
$(function() {
$.fn.EveryWhat = function(arg1) {
var arr = [];
if($.isNumeric(arg1)) {
$.each(this, function(idx, item) {
var newNum = idx + 1;
if(newNum%arg1 == 0)
arr.push(item);
});
}
return this.pushStack(arr, "EveryWhat", "");
}
});
이것을 어떻게 사용 하는가.
EveryWhat()
요소를 호출 하고 수집하려는 모든 요소에 대한 번호를 입력하십시오.
$("div").EveryWhat(2).wrapInner('<div class="new" />');
wrapinner의 따옴표는 <div class="new" />
클래스와 닫는 태그 로 적절하게 형식 을 지정해야합니다 . Stackoverflow는 그것이 어떻게 생겼는지 보여주지 못하도록 막지 만 여기에 자체 폐쇄 div의 링크가 있습니다.
어떻게 생겼는지
지정한 다른 모든 번호를 래핑합니다. jquery 1.8.2를 사용하고 있습니다. 따라서 EveryWhat(3)
항상 선택기 호출 과 번호를 사용하십시오 . 물론 페이지 하단에 두거나
$(document).ready(function() {
//place above code here
});
n 번째마다 사용할 수 .wrapInner('<div class="new" />')
있으며 동일한 결과를 얻을 수 있습니다.
답변
위의 Nick의 더 유용한 버전은 다음과 같습니다.
window.WrapMatch = function(sel, count, className){
for(var i = 0; i < sel.length; i+=count) {
sel.slice(i, i+count).wrapAll('<div class="'+className+'" />');
}
}
다음과 같이 사용합니다.
var ele = $('#menu > ul > li');
window.WrapMatch(ele, 5, 'new-class-name');
물론 창을 Handlers 네임 스페이스로 바꿔야합니다.
업데이트 됨 : jQuery를 활용하는 약간 더 나은 버전
(function($){
$.fn.wrapMatch = function(count, className) {
var length = this.length;
for(var i = 0; i < length ; i+=count) {
this.slice(i, i+count).wrapAll('<div '+((typeof className == 'string')?'class="'+className+'"':'')+'/>');
}
return this;
};
})(jQuery);
다음과 같이 사용하십시오.
$('.list-parent li').wrapMatch(5,'newclass');
랩퍼 이름의 두 번째 매개 변수는 선택 사항입니다.
답변
$(function() {
$.fn.WrapThis = function(arg1, arg2) { /*=Takes 2 arguments, arg1 is how many elements to wrap together, arg2 is the element to wrap*/
var wrapClass = "column"; //=Set class name for wrapping element
var itemLength = $(this).find(arg2).length; //=Get the total length of elements
var remainder = itemLength%arg1; //=Calculate the remainder for the last array
var lastArray = itemLength - remainder; //=Calculate where the last array should begin
var arr = [];
if($.isNumeric(arg1))
{
$(this).find(arg2).each(function(idx, item) {
var newNum = idx + 1;
if(newNum%arg1 !== 0 && newNum <= lastArray){
arr.push(item);
}
else if(newNum%arg1 == 0 && newNum <= lastArray) {
arr.push(item);
var column = $(this).pushStack(arr);
column.wrapAll('<div class="' + wrapClass + '"/>'); //=If the array reaches arg1 setting then wrap the array in a column
arr = [];
}
else if(newNum > lastArray && newNum !== itemLength){ //=If newNum is greater than the lastArray setting then start new array of elements
arr.push(item);
}
else { //=If newNum is greater than the length of all the elements then wrap the remainder of elements in a column
arr.push(item);
var column = $(this).pushStack(arr);
column.wrapAll('<div class="' + wrapClass + '"/>');
arr = []
}
});
}
}
});
나는 Kyle의 플러그인 아이디어를 가져와 자동으로 래핑하고 두 가지 인수를 취하도록 확장했습니다. 처음에는 작동하지 않았지만 코드를 몇 가지 편집하고 추가하여 실행했습니다.
함수를 호출하려면 래핑하려는 항목의 부모 요소를 사용하고 다음과 같이 인수를 설정하십시오.
$('#container').WrapThis(5, 'li');
첫 번째 인수는 함께 래핑하려는 요소의 수이고 두 번째 인수는 래핑하려는 요소 유형입니다.
변수 아래의 main 함수에서 래핑 요소의 클래스를 변경할 수 있습니다 wrapClass
.
답변
이 질문과 중복되는 다른 질문에 대해이 답변을 준비했습니다. 따라서 내 변형이 일부에 유용 할 수 있습니다.
세 가지 요소를 모두 감싸는 해결책은 다음과 같습니다.
var $lines = $('.w-col'), // All Dom elelements with class .w-col
holder = []; //Collect DOM elelements
$lines.each(function (i, item) {
holder.push(item);
if (holder.length === 3) {
$(holder).wrapAll('<div class="w-row" />');
holder.length = 0;
}
});
$(holder).wrapAll('<div class="w-row" />'); //Wrap last elements with div(class=w-row)
http://jsbin.com/necozu/17/ 또는 http://jsbin.com/necozu/16/ 일부 개선 사항으로 jsbin에서 동일한 코드를 작성했습니다.