จะแทรกองค์ประกอบเป็นลูกคนแรกได้อย่างไร?


97

ฉันต้องการเพิ่ม div เป็นองค์ประกอบแรกโดยใช้ jquery ในการคลิกปุ่มแต่ละครั้ง

<div id='parent-div'>
    <!--insert element as a first child here ...-->

    <div class='child-div'>some text</div>
    <div class='child-div'>some text</div>
    <div class='child-div'>some text</div>

</div> 

คำตอบสำหรับคำถามนี้ยังใช้ได้กับรายการองค์ประกอบย่อยที่ว่างเปล่า เยี่ยมมาก!
Roland

คำตอบ:


165

ลองใช้$.prepend()ฟังก์ชัน

การใช้งาน

$("#parent-div").prepend("<div class='child-div'>some text</div>");

การสาธิต

var i = 0;
$(document).ready(function () {
    $('.add').on('click', function (event) {
        var html = "<div class='child-div'>some text " + i++ + "</div>";
        $("#parent-div").prepend(html);
    });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<div id="parent-div">
    <div>Hello World</div>
</div>
<input type="button" value="add" class="add" />


the problem with this solution is that it inserts as the first child and not before the list children, if the parent container contains different children elements and one wants to insert before a specific group of child nodes, this will not work.
Aurovrata

At first, it was not apparent to me that this solution also works if there are zero child-div elements. prepend() will insert into the empty list and create the first child-div element. Of course, append() also works, but the list is created in another order.
Roland

18

Extending on what @vabhatia said, this is what you want in native JavaScript (without JQuery).

ParentNode.insertBefore(<your element>, ParentNode.firstChild);



5
parentNode.insertBefore(newChild, refChild)

Inserts the node newChild as a child of parentNode before the existing child node refChild. (Returns newChild.)

If refChild is null, newChild is added at the end of the list of children. Equivalently, and more readably, use parentNode.appendChild(newChild).


literally copy and pasted from another post. perhaps give reference to the specific question and how it relates?
roberthuttinger

1
parentElement.prepend(newFirstChild);

This is a new addition in (likely) ES7. It is now vanilla JS, probably due to the popularity in jQuery. It is currently available in Chrome, FF, and Opera. Transpilers should be able to handle it until it becomes available everywhere.

P.S. You can directly prepend strings

parentElement.prepend('This text!');

Links: developer.mozilla.org - Polyfill


0

Required here

<div class="outer">Outer Text <div class="inner"> Inner Text</div> </div>

added by

$(document).ready(function(){ $('.inner').prepend('<div class="middle">New Text Middle</div>'); });



โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.