javaScript闭包中的this

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/czh500/article/details/102694005

直接po图和代码

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>javaScript闭包中的this</title>
<script type="text/javascript">
	
	function fn1() {
		var num1 = 666.66;
		console.log('我是函数中的this', this);
		function fn2() {
			console.log('我是函数中的函数,我的this是', this);
			return this;
		}
		return fn2;
	}
	
	var result1 = fn1();
	console.log(result1);
	console.log('*****************');
	var result2 = fn1()();
	console.log(result2);
</script>
</head>
<body style="background-color: #CCE8CF;">
	<h1 style="color: red;">javaScript闭包中的this</h1>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/czh500/article/details/102694005