-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase1.html
100 lines (68 loc) · 1.88 KB
/
case1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
/*
var factory = function() {
this.initialize.apply(this, arguments)
}
var Person = factory
Person.prototype = {
initialize: function(obj1, obj2) {
this.obj1 = obj1
this.obj2 = obj2
},
showSelf: function() {
alert('obj: ' + this.obj1 + ' and ' + this.obj2)
}
}
var person = new Person('man', 'women')
person.showSelf()//obj:man and woman
*/
//北京-亮仔(799853145) 11:57:35
//这个时候能跑 如果你要再重建一个对象呢 比如这样:var factory = function() {
// this.initialize.apply(this, arguments)
//}
var factory = function() {
this.initialize.apply(this, arguments)
}
var Person = factory
Person.prototype = {
initialize: function(obj1, obj2) {
this.obj1 = obj1
this.obj2 = obj2
alert("22");
},
showSelf: function() {
alert('obj: ' + this.obj1 + ' and ' + this.obj2)
}
}
var Employ = factory;
alert(Employ)
//alert(Employ===factory)//true
//alert(Employ===Person)//true
Employ.prototype = {
initialize: function(obj1, obj2) {
this.obj1 = obj1
this.obj2 = obj2
alert("11");
}
}
//new factory('m11an', 'women').showSelf();
var person = new Person('man', 'women');
//var employ = new Employ('man', 'women');
//person.showSelf();//TypeError: person.showSelf is not a function
var s="aa";
alert(s.concat(123));
alert(Math);
//var m=new Math();
var arr=[1,2];
arr.push("aa");
console.log(arr,arr.length);
</script>
</body>
</html>