<i id='Ztj2u'><tr id='Ztj2u'><dt id='Ztj2u'><q id='Ztj2u'><span id='Ztj2u'><b id='Ztj2u'><form id='Ztj2u'><ins id='Ztj2u'></ins><ul id='Ztj2u'></ul><sub id='Ztj2u'></sub></form><legend id='Ztj2u'></legend><bdo id='Ztj2u'><pre id='Ztj2u'><center id='Ztj2u'></center></pre></bdo></b><th id='Ztj2u'></th></span></q></dt></tr></i><div id='Ztj2u'><tfoot id='Ztj2u'></tfoot><dl id='Ztj2u'><fieldset id='Ztj2u'></fieldset></dl></div>

    1. <tfoot id='Ztj2u'></tfoot>

      <small id='Ztj2u'></small><noframes id='Ztj2u'>

    2. <legend id='Ztj2u'><style id='Ztj2u'><dir id='Ztj2u'><q id='Ztj2u'></q></dir></style></legend>
        <bdo id='Ztj2u'></bdo><ul id='Ztj2u'></ul>

        如何使用标签的 id 去除标签及其所有内部 html?

        时间:2023-05-21
        1. <small id='JPzF6'></small><noframes id='JPzF6'>

            <tbody id='JPzF6'></tbody>

            <legend id='JPzF6'><style id='JPzF6'><dir id='JPzF6'><q id='JPzF6'></q></dir></style></legend>
                <i id='JPzF6'><tr id='JPzF6'><dt id='JPzF6'><q id='JPzF6'><span id='JPzF6'><b id='JPzF6'><form id='JPzF6'><ins id='JPzF6'></ins><ul id='JPzF6'></ul><sub id='JPzF6'></sub></form><legend id='JPzF6'></legend><bdo id='JPzF6'><pre id='JPzF6'><center id='JPzF6'></center></pre></bdo></b><th id='JPzF6'></th></span></q></dt></tr></i><div id='JPzF6'><tfoot id='JPzF6'></tfoot><dl id='JPzF6'><fieldset id='JPzF6'></fieldset></dl></div>

                  <bdo id='JPzF6'></bdo><ul id='JPzF6'></ul>
                  <tfoot id='JPzF6'></tfoot>
                  本文介绍了如何使用标签的 id 去除标签及其所有内部 html?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我有以下 html:

                  <身体>bla bla bla bla<div id="myDiv">更多文字<div id="anotherDiv">还有更多文字

                  布拉布拉布拉

                  我想删除从

                  开始直到结束

                  的所有内容.我该怎么做?

                  解决方案

                  With nativeDOM

                  $dom = 新的 DOMDocument;$dom->loadHTML($htmlString);$xPath = new DOMXPath($dom);$nodes = $xPath->query('//*[@id="anotherDiv"]');if($nodes->item(0)) {$nodes->item(0)->parentNode->removeChild($nodes->item(0));}echo $dom->saveHTML();

                  I have the following html:

                  <html>
                   <body>
                   bla bla bla bla
                    <div id="myDiv"> 
                           more text
                        <div id="anotherDiv">
                             And even more text
                        </div>
                    </div>
                  
                    bla bla bla
                   </body>
                  </html>
                  

                  I want to remove everything starting from <div id="anotherDiv"> until its closing <div>. How do I do that?

                  解决方案

                  With native DOM

                  $dom = new DOMDocument;
                  $dom->loadHTML($htmlString);
                  $xPath = new DOMXPath($dom);
                  $nodes = $xPath->query('//*[@id="anotherDiv"]');
                  if($nodes->item(0)) {
                      $nodes->item(0)->parentNode->removeChild($nodes->item(0));
                  }
                  echo $dom->saveHTML();
                  

                  这篇关于如何使用标签的 id 去除标签及其所有内部 html?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何用它们在 PHP 中基于的特殊字符替换特殊字符 下一篇:使用 PHP 转换所有类型的智能引号

                  相关文章

                  最新文章

                • <legend id='MDL34'><style id='MDL34'><dir id='MDL34'><q id='MDL34'></q></dir></style></legend>

                  <tfoot id='MDL34'></tfoot>
                    <bdo id='MDL34'></bdo><ul id='MDL34'></ul>
                    <i id='MDL34'><tr id='MDL34'><dt id='MDL34'><q id='MDL34'><span id='MDL34'><b id='MDL34'><form id='MDL34'><ins id='MDL34'></ins><ul id='MDL34'></ul><sub id='MDL34'></sub></form><legend id='MDL34'></legend><bdo id='MDL34'><pre id='MDL34'><center id='MDL34'></center></pre></bdo></b><th id='MDL34'></th></span></q></dt></tr></i><div id='MDL34'><tfoot id='MDL34'></tfoot><dl id='MDL34'><fieldset id='MDL34'></fieldset></dl></div>

                    <small id='MDL34'></small><noframes id='MDL34'>