js-this的使用演示

js-this的使用演示

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
//全局中this为window对象
console.log(this);

//函数内this指向window
var x = 1;
function test(){
	console.log(this);
	console.log(this.x);
}
function changeX(){
	this.x=5;
	}
changeX();	
test();

//函数内部函数N次嵌套this还是指向window
var x = 1;
var s=function test(){
	console.log(this.x);
	inner();
	function inner(){
		console.log(this.x);
		innerInner();
		function innerInner(){
			console.log(this);
			console.log(this.x);
			}
		}
}
s();

//函数内外相同变量容易混淆
var x = 1;
var s=function test(){
    var x=3;
    console.log(x);
	console.log(this.x);
}
s();

//构造函数中的this指向对象本身
var x = 1;
function test(){
	console.log(this);
	this.x=2;
}
var o=new test();
console.log(o.x);
console.log(x);

//闭包中的this指向window
var x = 1;
function test(){
	console.log(this.x);
	console.log(this);
	this.x=2;
	var m=function (){
		this.x=4;
		console.log(this);
		console.log(this.x);
		console.log("m");
		}
	return m;
}
test();
var o=new test();
console.log(o.x);
o();
console.log("x:"+x);


//在对象中的this,this变化后的值变化
function test(){
	console.log(this);
	console.log(this.x);
	}
test();	
var o = {};
o.x = 1;
o.m = test;
o.m();

//apply动态指定this
var x = 0;
function test(){
	console.log(this);
	console.log(this.x);
  }
test();
var o={
	x:1,
	m:this.test
	};
o.m.apply(o);

</script>


</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值