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


- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01