<script type="text/javascript">
var Memento = function (status) {
//备忘录对象
var status = status;
Memento.prototype.getStatus = function () {
//获取状态
return status;
};
};
var Status = function (x, y) {
//状态对象
this.x = x;
this.y = y;
};
var f1 = new Memento(new Status(1, 1));
var f2 = new Memento(new Status(2, 2));
//重新设置了f1.constructor.prototype.getStatus方法,并且把作用域链指到了f2的构造上。
alert(f1 === f2);
alert(f1.getStatus().x); //即2
</script>