jQuery nextUntil include text nodes

后端 未结 2 1847
予麋鹿
予麋鹿 2020-12-06 13:30

I\'m using nextUntil method to get all stuff between two elements. But this method does not include text nodes to output. It gives an array like

2条回答
  •  南方客
    南方客 (楼主)
    2020-12-06 14:06

    Only the jQuery .contents() method returns all nodes (including text nodes, normally ignored).

    So maybe something like this?:

    http://jsfiddle.net/ykv3gf5L/2/

    $('.content').each(function () {
        var open = false;
        var result = $();
        $(this).contents().each(function () {
            var $this = $(this);
            if ($this.text() == "spoiler") {
                if (open) {
                    result.wrapAll('
    '); open = false; } else { result = $(); open = true; } } else { result = result.add($this) } }); if (open) { result.wrapAll('
    '); } });

    It just iterate all nodes and based on a flag starts a new collection, or wraps the nodes found.

    The final if (open) allows for an unclosed spolier block within a content classed div.

    Notes:

    • $() is an empty jQuery collection (like an empty array but for jQuery objects)
    • I suggest you use a style for your spoilers and use a class e.g. result.wrapAll('
      ');

    e.g. http://jsfiddle.net/ykv3gf5L/3/

提交回复
热议问题