博客列表 >​7月10日作业:构造函数来创建对象

​7月10日作业:构造函数来创建对象

执着的博客
执着的博客原创
2019年07月12日 20:19:03654浏览

1. 写一个构造函数来创建对象
2. 向构造函数的prototype中添加成员,实现数据在实例间共享

实例

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	</head>
	<body>
	<script>
		// var domain='php.cn';
		// function get(value){
		// 	var site='php中文网';
		// 	return site+value;
		// }
		// console.log(get(domain))
		// var obj={};
		// obj.domain='www.php.cn';
		// obj.get=function(value){
		// 	var site='php中文网';
		// 	return site+value
		// }
		// console.log(obj.domain);
		// console.log(obj.get(obj.domain))
		var Createobj= function(){
			this.domain='php.cn';
			this.get=function (value) {
				var site='php中文网';
				return site+value;
				
			};
		};
		var obj2=new Createobj();
		console.log(obj2.domain);
		console.log(obj2.get(obj2.domain));
		Createobj.email='admin@php.cn';
		Createobj.hello=function (){
			return 'js好学吗?';
		}
		Createobj.prototype.email='admin@php.cn';
		Createobj.prototype.hello='JS真难学';
		var obj3= new Createobj();
		console.log(obj3.email);
		console.log(obj3.hello)
	</script>
	</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议