Jquery change text between two elements

后端 未结 8 975
無奈伤痛
無奈伤痛 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:25

    You can call contents() on the parent element to obtain its child text nodes, then use slice() with index() to locate the text nodes you want to remove. From there on, after() will allow you to add the new content:

    var ch1 = $("input:checkbox[name=ch1]"),
        ch2 = $("input:checkbox[name=ch2]"),
        contents = ch1.parent().contents();
    contents.slice(contents.index(ch1) + 1, contents.index(ch2)).remove();
    ch1.after("The text was changed.");
    

    You can test it in this fiddle.

提交回复
热议问题