this,this,再次讨论javascript中的this,超全面(经典)(2)

var test = function(){ } var my = function(){ this.a = function(){ alert(this === mytest2); } } var mytest = new my(); test.prototype = mytest; var mytest2 = new test(); mytest2.a();

10、还剩下些什么了,可能就是'dom'对象了

<script> var mytest = function(context){ alert(context.getAttribute('id')); alert(this === window); } </script> <div>aaaa</div>

看了上面的应该了解了吧,里面的'this'分别代表神马

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgwffx.html