gpt4 book ai didi

jquery - 如何在 jQuery 数组中将 '

' 替换为 '

  • ' ?
  • 转载 作者:行者123 更新时间:2023-12-01 00:47:04 25 4
    gpt4 key购买 nike

    假设我有这个

    $(document).ready(function() {
    var array = $.makeArray($('p'));
    $(array).appendTo(document.body);
    });
    });
    <小时/>
    <p>how</p>
    <p>are</p>
    <p>you</p>
    <p>baby?</p>

    如果我想替换<p><li>预期输出是...

    <li>how</li>
    <li>are</li>
    <li>you</li>
    <li>baby?</li>

    我该怎么办?提前致谢!

    最佳答案

    $("p").each(function () {
    $(this).replaceWith("<li>" + $(this).html() + "</li>");
    });

    关于jquery - 如何在 jQuery 数组中将 '<p>' 替换为 '<li>' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2543617/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com