gpt4 book ai didi

javascript - 具有样式属性的 jQuery clone 克隆元素

转载 作者:行者123 更新时间:2023-11-29 23:06:05 25 4
gpt4 key购买 nike

我想制作可拖动的历史。当可拖动停止时,它应该将整个 DOM 推送到 let history = [] 然后每当有人点击 button 然后最后一个 DOM 应该被带回但它不起作用。当我尝试恢复以前的 DOM 时,它无法正确克隆。看起来 style="top: , left:" 属性没有被克隆。谁能帮忙?

let history = [];

function pushHistory() {
history.push($('.page').each(function() {
return $(this).clone(true, true)
}))
}

function backHistory() {
history.pop();
$(history[history.length - 1]).each(function() {
$(this).detach().appendTo($('.outer'))
})
}
$(".page").draggable({
stop: function(event, ui) {
pushHistory();
}
})

$('button').on('click', function() {
backHistory();
})
.page {
display: inline-block;
background-color: red;
width: 50px;
height: 50px;
position: relative;
color: white;
font-size: 3em;
text-align: center;
line-height: 50px;
}

.back {
position: absolute;
top: 0px;
right: 0px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

<div class="outer">
<div class="page">
1
</div>
<div class="page">
2
</div>
<div class="page">
3
</div>
<div class="page">
4
</div>
<div class="page">
5
</div>
<div class="page">
6
</div>
</div>
<button class="back">
Back
</button>

最佳答案

我对 JavaScript 部分做了如下的一些调整,它起作用了:

let history = [];

function pushHistory(el) {
history.push({
index: el.index(),
offset: el.offset()
})
}

function backHistory() {
let el = history[history.length - 1];
if (el) {
$('.outer').find('.page').eq(el.index).offset(el.offset);
history.pop();
}
}

$('.page').draggable({
start: function() {
pushHistory($(this))
}
})

$('button').on('click', function() {
backHistory();
})

基本上,它现在在可拖动的“开始”事件上保存元素的索引和偏移量。然后,backHistory 仅作用于最后拖动的元素。

它在这里运行:https://jsfiddle.net/12sdku0e/

关于javascript - 具有样式属性的 jQuery clone 克隆元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54732705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com