触发即将被替换的对象的方法

发布于 2024-12-22 05:41:03 字数 331 浏览 3 评论 0原文

给定这个 var:

somevar = {dothis: function(){console('yay')}};

如果我想劫持它,我想我会做类似的事情:

tempvar = somevar;
somevar = function(){ console.log('yoink'); tempvar();};

但是如果我知道 var 将在 60 秒内重新定义,并且我想在 65 秒内劫持它,我该怎么做这样做吗? setTimeout 不会立即解析该函数​​,然后引用旧的被劫持的函数吗?

提前致谢。

Given this var:

somevar = {dothis: function(){console('yay')}};

If I want to hijack it, I would think i'd do something like:

tempvar = somevar;
somevar = function(){ console.log('yoink'); tempvar();};

But if I know that the var is going to be redefined in 60 seconds, and I want to hijack it in 65 seconds, how do I do that? Wouldn't a setTimeout parse the function immediately, and then refer to the old hijacked function?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

血之狂魔 2024-12-29 05:41:03

尝试这样的事情:

// initial data
var somevar = {
  dothis: function(){
    console.log('yay');
  }
};

somevar.dothis(); // output: yay

// hijacking in 1 second
setTimeout(function () {
    console.log('hijacking');
    somevar.dothis = (function (orig) {
        return function () {
            console.log('yoink');
            orig.apply(this, arguments);
        };
    }(somevar.dothis));
}, 1000);

// saved reference running 1.5 seconds later (0.5 seconds after hijacking)
setTimeout(somevar.dothis, 1500); // output (still): yay

// live reference running 2 seconds later (1 second after hijacking)
setTimeout(function () {
  somevar.dothis(); // output: yoink / yay
}, 2000);

演示: http://jsfiddle.net/MDLZt/

Try something like this:

// initial data
var somevar = {
  dothis: function(){
    console.log('yay');
  }
};

somevar.dothis(); // output: yay

// hijacking in 1 second
setTimeout(function () {
    console.log('hijacking');
    somevar.dothis = (function (orig) {
        return function () {
            console.log('yoink');
            orig.apply(this, arguments);
        };
    }(somevar.dothis));
}, 1000);

// saved reference running 1.5 seconds later (0.5 seconds after hijacking)
setTimeout(somevar.dothis, 1500); // output (still): yay

// live reference running 2 seconds later (1 second after hijacking)
setTimeout(function () {
  somevar.dothis(); // output: yoink / yay
}, 2000);

demo: http://jsfiddle.net/MDLZt/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文