如何从内部函数中找到调用者?

发布于 2024-09-26 23:16:18 字数 1063 浏览 5 评论 0原文

<input type='button' id='btn' value='click' />

<script type="text/javascript">
 var jObject = {
  bind : function(){
   var o = document.getElementById('btn');
   o.onclick = function(){
    // How can I find caller from here ?
   }
  }
 };
 jObject.bind();
</script>

更新

我从这里读到了一些技巧 - http://www.mennovanslooten。 nl/blog/post/62

现在我可以在内部函数中获取 jObject 了。

<input type='button' id='btn' value='click' />

<script type="text/javascript">
    var jObject = {
        bind : function(){
            var o = document.getElementById('btn');
            o.onclick = function(jObj){ // 1. add this
                return function(){      // 3. wrap with return function(){ ... }
                    alert(jObj);        // 4. now I can get jObject here.
                }
            }(this);                    // 2. and this
        }
    };
    jObject.bind();
</script>
<input type='button' id='btn' value='click' />

<script type="text/javascript">
 var jObject = {
  bind : function(){
   var o = document.getElementById('btn');
   o.onclick = function(){
    // How can I find caller from here ?
   }
  }
 };
 jObject.bind();
</script>

UPDATE

I read some trick from here - http://www.mennovanslooten.nl/blog/post/62

And now I can get jObject inside inner function.

<input type='button' id='btn' value='click' />

<script type="text/javascript">
    var jObject = {
        bind : function(){
            var o = document.getElementById('btn');
            o.onclick = function(jObj){ // 1. add this
                return function(){      // 3. wrap with return function(){ ... }
                    alert(jObj);        // 4. now I can get jObject here.
                }
            }(this);                    // 2. and this
        }
    };
    jObject.bind();
</script>

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

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

发布评论

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

评论(1

滥情空心 2024-10-03 23:16:18

在您的 onclick 中,this 将引用您单击的 元素,例如:

var jObject = {
 bind : function(){
  var o = document.getElementById('btn');
  o.onclick = function(){
   alert(this.value); //alerts 'click'
  }
 }
};
jObject.bind();

Inside your onclick, this will refer to the <input id="btn"> element you clicked, for example:

var jObject = {
 bind : function(){
  var o = document.getElementById('btn');
  o.onclick = function(){
   alert(this.value); //alerts 'click'
  }
 }
};
jObject.bind();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文