如何复制页面片段,克隆是答案吗?

发布于 2024-12-21 14:59:06 字数 345 浏览 1 评论 0原文

我的页面中有一个表单,其中的字段是从像下拉列表一样的ajax填充的。现在我也在页面上添加了一个选项卡。我的页面的第二个选项卡将包含相同的表单字段和一些附加字段。如何复制第一个选项卡内容并将其加载到第二个选项卡中,并留出空间来添加一些附加元素。我这里有一个jsfiddle。

http://jsfiddle.net/UL9cx/5/

我尝试手动添加它并执行显示隐藏单击选项卡时的 div,但由于某种原因,第二个选项卡上的表单字段未加载,因为我猜 ajax 正在产生问题。

有人可以帮我吗?

谢谢,

I have a form in my page where the fields are being populated from ajax like dropdowns. Now I have a added a tab to the page as well. My second tab of the page will contain the same form fields and some additional ones. How do I duplicate my first tab content and load it into the second tab with room for some addition elements to be added on. I have a jsfiddle here.

http://jsfiddle.net/UL9cx/5/

I tried adding it manually and doing show hide for the divs on click of tabs, but for some reason form fields on second tab don't load as I guess ajax is creating issues.

can anybody help me out here.

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花细雨 2024-12-28 14:59:06

我不确定我完全理解这个问题,但以下内容应该清除第二个块,并附加第一个块的克隆...

$('.block.two').empty().append($('.block:first').clone(true).contents());

此处更新了 jsfiddle: http://jsfiddle.net/UL9cx/7/

I'm not sure I totally understand the question, but the following should clear the second block, and append a clone of the first...

$('.block.two').empty().append($('.block:first').clone(true).contents());

Updated jsfiddle here: http://jsfiddle.net/UL9cx/7/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文