-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs_object_function_0615.html
55 lines (37 loc) · 1.15 KB
/
js_object_function_0615.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
//object function
//常用object + function => this => object
//程式碼要吃到object裡的變數,要記得用this
//object裡的 this最常用
//這個寫法目前式JavaScript常用的object_function寫法
let student = {
id : 1,
name : 'Jenny',
fn1 : function(){
//document.write(`hello<br>`);
console.log('this',this);
document.write(`hello ${this.name}<br>`);
}
//fnArrow : value => {
//console.log('fnArrow this',this);
}
//}
//js 比較難理解的地方
student.fn1();
student.fnArrow();
function exFunction (){
console.log('exFunction this',this);
}
exFunction()
</script>
</body>
</html>