<tfoot id='BmE1p'></tfoot>

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

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

        • <bdo id='BmE1p'></bdo><ul id='BmE1p'></ul>

        如何在 jquery 中用另一个标签替换 HTML 标签?

        时间:2023-07-31
          <legend id='zL1ZJ'><style id='zL1ZJ'><dir id='zL1ZJ'><q id='zL1ZJ'></q></dir></style></legend>
          <i id='zL1ZJ'><tr id='zL1ZJ'><dt id='zL1ZJ'><q id='zL1ZJ'><span id='zL1ZJ'><b id='zL1ZJ'><form id='zL1ZJ'><ins id='zL1ZJ'></ins><ul id='zL1ZJ'></ul><sub id='zL1ZJ'></sub></form><legend id='zL1ZJ'></legend><bdo id='zL1ZJ'><pre id='zL1ZJ'><center id='zL1ZJ'></center></pre></bdo></b><th id='zL1ZJ'></th></span></q></dt></tr></i><div id='zL1ZJ'><tfoot id='zL1ZJ'></tfoot><dl id='zL1ZJ'><fieldset id='zL1ZJ'></fieldset></dl></div>

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

            <tfoot id='zL1ZJ'></tfoot>
                <tbody id='zL1ZJ'></tbody>

                • <bdo id='zL1ZJ'></bdo><ul id='zL1ZJ'></ul>

                  本文介绍了如何在 jquery 中用另一个标签替换 HTML 标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个正在开发的网站,它使用aside"标签,无论我尝试什么,我都无法让 IE8 能够读取,即使使用 HTML5 Shiv 也是如此.所以,我想知道,你将如何使用 jQuery 将现有标签替换为其他标签?

                  例如,如果我想改变

                  <h3></h3></旁白>

                  <h3></h3></div>

                  那该怎么做?

                  解决方案

                  试试这个:

                  $('aside').contents().unwrap().wrap('<div/>');

                  • 先获取aside的内容.
                  • 现在解开内容.
                  • 现在简单地说,wrap 将内容放入一个新标签中,这里是 div.

                  演示

                  <小时>

                  此外,您可以使用 .replaceWith() 方法来执行此操作,例如:

                  $('aside').replaceWith(function () {返回 $('<div/>', {html: $(this).html()});});

                  演示

                  I have a site I'm working on and it uses 'aside' tags, which I'm not getting IE8 to be able to read no matter what I try, even with an HTML5 Shiv. So, I'm wondering, how would you replace existing tags with other tags with jQuery?

                  For example, if I wanted to change

                  <aside>
                    <h3></h3>
                  </aside>
                  

                  to

                  <div>
                    <h3></h3>
                  </div>
                  

                  How would that be done?

                  解决方案

                  Try this:

                  $('aside').contents().unwrap().wrap('<div/>');
                  

                  • Get the contents of aside first.
                  • Now unwrap the contents.
                  • Now simply, wrap the contents inside a new tag, here a div.

                  DEMO


                  Also, you can do this using .replaceWith() method like:

                  $('aside').replaceWith(function () {
                      return $('<div/>', {
                          html: $(this).html()
                      });
                  });
                  

                  DEMO

                  这篇关于如何在 jquery 中用另一个标签替换 HTML 标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:哪个是使用 jQuery 创建新元素的正确或更好的方法? 下一篇:如何在 HTML 中双删除线?

                  相关文章

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

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

                      <legend id='re4zi'><style id='re4zi'><dir id='re4zi'><q id='re4zi'></q></dir></style></legend>

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