how to clone content of a div to another div(如何将一个div的内容克隆到另一个div)
问题描述
我想使用 jquery 克隆将选定 div 的内容复制到另一个 div.但我不想将它附加到任何地方
I want to copy the content of a selected div to another div with jquery clone. but I dont want to append it anywhere
我的意思是,当我们用 jquery 克隆一个 div 时(如果我错了,请纠正我)我们必须设置它的位置,它会动态创建一个显示的新分区.
what I mean is when we make a clone of a div with jquery (correct me if i am wrong) we have to set its position and it will dynamically create a new division which is displayed.
但我想获取选定的div的内容并将其复制到另一个预设的div
but I want to get the content of a selected div and copy it to another pre-set div
推荐答案
var a = $('#selector').html();
var b = $('#selector').html(a);
不确定我是否理解正确,但我认为这就是你的意思:)
not sure I understood you properly but I think thats what you meant :)
这篇关于如何将一个div的内容克隆到另一个div的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将一个div的内容克隆到另一个div
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01