JavaScript คีย์เวิร์ดนี้อ้างอิงถึงอ็อบเจ็กต์ที่เป็นของมัน มันสามารถอ้างถึงอ็อบเจ็กต์ส่วนกลางหากอยู่คนเดียวหรือภายในฟังก์ชัน หมายถึงอ็อบเจ็กต์เจ้าของหากอยู่ภายในเมธอดและอ้างถึงองค์ประกอบ HTML ที่ได้รับเหตุการณ์ในตัวฟังเหตุการณ์
ต่อไปนี้เป็นรหัสสำหรับตัวระบุนี้จาวาสคริปต์ -
ตัวอย่าง
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sample {
font-size: 18px;
font-weight: 500;
color: red;
}
</style>
</head>
<body>
<h1>JavaScript this Identifier</h1>
<div class="sample"></div>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>
Click on the above button to see which object 'this' refers to in multiple
context
</h3>
<script>
let thisRef = this;
let sampleEle = document.querySelector(".sample");
function test() {
return this;
}
let testObj = {
a: 22,
check() {
return this;
},
};
document.querySelector(".Btn").addEventListener(
"click",
() => {
sampleEle.innerHTML ="This inside normal function = " + test() + "<br>";
sampleEle.innerHTML +="This inside a method = " + testObj.check() + "<br>";
sampleEle.innerHTML += "This without any scope = " + thisRef + "<br>";
},
false
);
</script>
</body>
</html> ผลลัพธ์

เมื่อคลิกปุ่ม “คลิกที่นี่” -
