标签:cti win type nod text ret this hello 使用
当在全部范围内使用this,他将会指向全局对象,一般是window对象,但全局对象不一定只有window,特别是在node.js环境中,作为函数调用时一般作为全局对象
<script type="text/javascript">
var name="hello";
console.log(this.name); //顶层对象,一般为window
function show(){
console.log(this.name); //顶层对象window
return function(){
console.log(this.name); //顶层对象window,返回的是个函数
}
}
var s1 = new show();
s1();
</script>
标签:cti win type nod text ret this hello 使用
原文地址:http://www.cnblogs.com/zhi-dong/p/7900339.html