jQuery는 div를 특정 인덱스로 삽입 내가 이것을 가지고 있다고 말하십시오. 1 div:nth-child(" + (i) + ")").after("great things"); } 편집 : NaN 오류를 방지하기 위해 n 번째 자식 선택기에 괄호가 추가되었습니다. 안녕하세요. function insertAtIndex(i) { if(i === 0) { $("#controller").prepend("okay things"); return; } $("#controller > div:nth-child(" + (i) + ")").after("great things"); } window.doInsert = function(){ insertAtIndex(2); } Item 1 Item 2 Item 4 Item 5 ..