undo redo
利用这个类可以保存方法的的实参,函数以后备用。在实例生成时会产生一个序列号用来标识是否来自undo或者redo的调用,从而避免存入缓存栈。 在浏览器中用调试工具看调用结果 View Code 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 6 <title>javascript</title> 7 </head> 8 9 <body> 10 <input type="button" value=" - " id="a" /> <input type="button" value=" + " id="b" /> 11 12 <input type="button" value=" - " id="c" /> <input type="button" value=" + " id="d" /> 13 <script type="text