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

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

      <tfoot id='itzUr'></tfoot>

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

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

      克隆一个 &lt;form&gt;&lt;/form&gt;标记并将其包裹在现有内容周围

      时间:2023-10-20

    1. <legend id='8KHkz'><style id='8KHkz'><dir id='8KHkz'><q id='8KHkz'></q></dir></style></legend>

      • <bdo id='8KHkz'></bdo><ul id='8KHkz'></ul>
          <tbody id='8KHkz'></tbody>

          <small id='8KHkz'></small><noframes id='8KHkz'>

            <tfoot id='8KHkz'></tfoot>

              • <i id='8KHkz'><tr id='8KHkz'><dt id='8KHkz'><q id='8KHkz'><span id='8KHkz'><b id='8KHkz'><form id='8KHkz'><ins id='8KHkz'></ins><ul id='8KHkz'></ul><sub id='8KHkz'></sub></form><legend id='8KHkz'></legend><bdo id='8KHkz'><pre id='8KHkz'><center id='8KHkz'></center></pre></bdo></b><th id='8KHkz'></th></span></q></dt></tr></i><div id='8KHkz'><tfoot id='8KHkz'></tfoot><dl id='8KHkz'><fieldset id='8KHkz'></fieldset></dl></div>
                本文介绍了克隆一个 &lt;form&gt;&lt;/form&gt;标记并将其包裹在现有内容周围?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                So There is an existing form tag as such:

                <form id="vCSS_mainform" onsubmit="javascript:return QtyEnabledAddToCart_SuppressFormIE();" action="/ProductDetails.asp?ProductCode=40124" name="MainForm" method="post">Bunch of Content</form>
                

                There is a bunch of content inside of this form tag. I need to take just the element of it, clone it, and wrap it around another TABLE element that I have on the page.

                I don't want anything in the form tag to be cloned. Is this possible?

                I can't just do $("p").wrapAll(""); because that form action contains dymanic content that changes. So i need to find the form tag on whatever page the user is on and clone that exact one.

                解决方案

                var $clone = $('#vCSS_mainform').clone().empty().attr('id', 'newId');
                $('#vCSS_mainform').remove(); // only if you don't need it anymore.
                $('#yourTable').wrap($clone);
                

                note: if you remove the original form, you don't need to set a new id for the clone (no need of .attr('id', 'newId'))

                这篇关于克隆一个 &lt;form&gt;&lt;/form&gt;标记并将其包裹在现有内容周围?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:附加 &lt;script src=&quot;&gt;&lt;/script& 下一篇:Javascript动态添加cdata部分?

                相关文章

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

                    <bdo id='334as'></bdo><ul id='334as'></ul>

                  <small id='334as'></small><noframes id='334as'>