码迷,mamicode.com
首页 > Web开发 > 详细

ajax-01

时间:2015-11-17 07:03:18      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:ajax

<!DOCTYPE html>
<html>
<head>
	<title></title>
	<meta charset="utf-8" />
	<script type="text/javascript">
		function test(){
			var a = 100;
			this.b = 200;
			//私有方法
			function getMax(){
				alert(1);
			}
			//公有方法
			this.getMin = function (){
				alert(2);
			}
		}
		var obj = new test;

		obj.b;
		obj.getMin();//公有方法可以调出,值为2
		//obj.getMax();//私有方法调不出
	</script>
</head>
<body>

</body>
</html>


本文出自 “IT5808” 博客,请务必保留此出处http://it5808.blog.51cto.com/10842703/1713238

ajax-01

标签:ajax

原文地址:http://it5808.blog.51cto.com/10842703/1713238

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!