JavaScript——this

一、JavaScript 函数与方法

<body>
		<script type="text/javascript">
			function show(){
				console.log("这是一个函数");
			}
			
		(function(){
				console.log("这是一个函数表达式");
			}
		)();
			
			this.show();
			
		var obj1={
			show:function(){
				console.log("这是一个方法");
			}
		};
		obj1.show();
		
		 function obj2(){
		 	this.show=function(){
		 		console.log("这是一个方法,是一个表达式");
		 	}
		 	
		 }
			
			var obj3=new obj2();
			obj3.show();
			
		</script>
	</body>

 

posted @ 2017-04-26 09:43  小轩窗,正梳妆  阅读(143)  评论(0编辑  收藏  举报