函數,this,局部變量

<html>
	<head>
		<title>wodeweb</title>
	</head>
	<body>
		<script type="text/javascript">
			var PI="PI的值爲:";
			var value="3.1415926";
			function getPI()        
			{
				var value="3.14";//注意這裏的局部變量
				alert((this===window)+"\n"+this.PI+this.parseFloat(this.value));//注意,這裏是this.value不是value
			}
			window.getPI();//等於getPI()
		</script>
	</body>
</html>
相關文章
相關標籤/搜索