javascript 在JavaScript中使用“this”的不同方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 在JavaScript中使用“this”的不同方式相关的知识,希望对你有一定的参考价值。

// 1
console.log(this); // refers to the Global Object aka window
// its methods include prompt alert confirm etc...

// 2
function test() {
  console.log(this);
  this.method = function inner() {console.log(this)};
}; // Here again "this" will refer to the global object
test();

//3
var obj = new test(); // Since we are using the constructor, this now refers to the new object "test"!

//4
obj.method(); //infereing methods forced this to be set to its object

// 5: You can also force this to be a certain value using call or apply
function foo(a, b, c) {
  this.a = a;
  this.b = b;
  this.c = c;
}

var bar = {};
foo.apply(bar, [1, 2, 3]); //this first parameter will be what "this" is
console.log(bar) // bar will be an arry like a: 1, b: 2, c: 3

foo.call(bar, 4, 5, 6); // same here
console.log(bar) // bar will be an arry like a: 4, b: 5, c: 6


以上是关于javascript 在JavaScript中使用“this”的不同方式的主要内容,如果未能解决你的问题,请参考以下文章

javascript 使用JavaScript在脚本中插入脚本

javascript 在JavaScript中使用“this”的不同方式

JavaScript 在Javascript中使用“typeof”运算符

JavaScript高级程序设计在HTML中使用JavaScript

JavaScript学习笔记在Html中如何使用Javascript

在 Rails 中如何在使用 javascript_include_tag 之前检查 javascript 文件是不是存在