我正在处理html DnD。我在互联网上看到了很多教程,并获得了od DnD http://jsbin.com/axegem/1的示例。现在,在重新排列这些页面的对象之后,我想保存它,但是我不知道该怎么做,请任何人都可以提供帮助。
谢谢 !!
最佳答案
我进行了更新:https://jsfiddle.net/f7fq7n94/
$("#draggable4").draggable({
containment: "#containment-wrapper",
scroll: false,
stop: function (event, ui) {
positions[this.id] = ui.position
localStorage.positions = JSON.stringify(positions)
}
});
$("#draggable5").draggable({
containment: "#containment-wrapper",
scroll: false,
stop: function (event, ui) {
positions[this.id] = ui.position
localStorage.positions = JSON.stringify(positions)
}
});
关于javascript - 拖放更改后如何保存html页面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37810012/