以上代码存在一些问题。我尝试使用这些,发现在它开始下降阵列之前我必须先点击两次撤消。
所以说我已经完成[0] 完成[1] 完成[2]。done[2] 刚刚保存到数组中。如果我点击撤消,它会返回。你不想要那个。它正在取代已经存在的东西。但是再次点击撤消,然后你会得到你以前的代码。
我的,因为我有一个具有不同编辑模式的拖放编辑器。拖放元素。编辑元素 HTML/图片。对元素进行排序。
$("#neoContentContainer") 包含所有编辑器 html。您可以在点击、鼠标按下等时调用 editor_add ... 看到它是一个您可以轻松调用的函数。
function editor_add(){
undo.push($("#neoContentContainer").html());
update_buttons();
}
function editor_undo(){
var item = undo.pop();
// prevent undo/redo from undoing to the same HTML currently shown.
if(item == $("#neoContentContainer").html()){
redo.push(item);
item = undo.pop();
}
if(item){
redo.push(item);
$("#neoContentContainer").html(item);
}
update_buttons();
}
function editor_redo(){
var item = redo.pop();
if(item == $("#neoContentContainer").html()){
undo.push(item);
item = redo.pop();
}
if(item){
undo.push(item);
$("#neoContentContainer").html(item);
}
update_buttons();
}
function update_buttons(){
if(undo.length == 0){
$('button[data-id="undo"]').attr('disabled',true);
} else {
$('button[data-id="undo"]').attr('disabled',false);
}
if(redo.length == 0){
$('button[data-id="redo"]').attr('disabled',true);
} else {
$('button[data-id="redo"]').attr('disabled',false);
}
}
https://jsfiddle.net/s1L6vv5y/
不完美,但了解它的要点。(仍然想知道我们什么时候可以得到 ONE LINE LINE BREAKS!!!! DEVS AT STACKOVERFLOW !! :)
所以当我的页面加载时,我运行: editor_add(); 因为当他们做某事时,它需要撤消某事!
现在每次他们丢东西时,我运行 editor_add(); 花了我一整天,现在意识到这对我来说非常简单。
所以有了这个,很好....
var history = function() {
this.done = this.reverted = [];
var self = this;
this.add = function(item) {
self.done.push(item);
};
this.undo = function() {
if(done.length >= 3){
var undo_item = self.done.pop();
self.reverted.push(undo_item);
}
var item = self.done.pop();
if (item) {
self.reverted.push(item);
}
return item;
};
this.redo = function() {
if(reverted.length >= 3){
var revert_item = self.reverted.pop();
self.done.push(revert_item);
}
var item = self.reverted.pop();
if (item) {
self.done.push(item);
}
return item;
};
};
在遍历数组之前,您不想清除重做。
(猜测编辑前登录有帮助!)