Jquery change text between two elements

后端 未结 8 948
無奈伤痛
無奈伤痛 2020-12-06 10:48

I want to change text between two elements using JQuery, but I don\'t have any idea !

for example:


    T         


        
8条回答
  •  粉色の甜心
    2020-12-06 11:23

    
    $(document).ready(function(){
        alert(getAllBetween("input#ch1","input#ch2"));
    });
    
    function getAllBetween(firstEl,lastEl) {
        var firstElement = $(firstEl); // First Element
        var lastElement = $(lastEl); // Last Element
        var collection = new Array(); // Collection of Elements
        collection.push(firstElement); // Add First Element to Collection
        $(firstEl).nextAll().each(function(){ // Traverse all siblings
            var siblingID  = $(this).attr("id"); // Get Sibling ID
            if (siblingID != $(lastElement).attr("id")) { // If Sib is not LastElement
                    collection.push($(this)); // Add Sibling to Collection
            } else { // Else, if Sib is LastElement
                    return false; // Break Loop
            }
        });         
        return collection; // Return Collection
    }
    

提交回复
热议问题