JavaScirpt基础 之 this 关键字 六
this 关键字面向对象语言中 this 表示当前对象的一个引用。
但在 JavaScript 中 this 不是固定不变的,它会随着执行环境的改变而改变
。
对象方法中绑定
this 是 person 对象,person 对象是函数的所有者:
举例
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>对象方法中绑定</title>
</head>
<body>
<h2>JavaScript <b>this</b> 关键字</h2>
<p>在实例中,<b>this</b> 指向了 fullName 方法所属的对象 person。</p>
<p id="demo"></p>
<script>
// 创建一个对象
var person = {
firstName : "John",
lastName : "Doe",
id : 5566,
myFunction : function() {
return this;
}
};
// 显示表单数据
document.getElementById("demo").innerHTML = person.myFunction();
</script>
</body>
</html>
结果
JavaScript this 关键字
在实例中,this 指向了 fullName 方法所属的对象 person。
[object Object]