3

有这个代码:

 $(".toggle", '.Div1').on('click',function () 
  {
   alert("I was clicked becuase im .toggle is under the context of _________");
  });

我需要获取$(this)值所在的上下文。

我怎样才能得到 的价值 _______

4

1 回答 1

4

这是不可能的。Event 对象不包含对用于绑定它的 jQuery 对象的任何引用。

于 2013-01-10T12:24:44.363 回答