this in JavaScript is also a magical thing. In object-oriented programming (such as Java), it represents a current object reference. However, in JavaScript, this is not fixed, but changes with the running environment. thisAs usual, let’s look at the code first: Methodfunction test(){ console.log(this); } In the objectfunction test(){ console.log(this); } In a method, this refers to the object to which the method belongs. Because the first one is a method on window, window is printed, and the eat method is a Person method, so the object Person is printed. So it can be seen that using this alone in the console represents the global object. Hidden thisIn objects, you can declare them one by one in advance: var Person1 = { name:"Zhang San", age:18 } var Person2 = { name:"Li Si", age:19 } This would be very troublesome to write, so you can learn from the concept of Java class, like this: var Person = function (name, age) { this.name=name, this.age=age } var Person1=new Person("张三",18); var Person2=new Person("Li Si",19); In fact, there is a return this hidden in new. If you don’t use new, you will find that it does not return the newly created object. Now let’s complete it: var Person = function (name, age) { this.name=name, this.age=age return this; } var Person1=new Person("张三",18); var Person2=new Person("Li Si",19); In this way, you can even fake the effect of this: var Person = function (name, age) { var that={}; that.name=name, that.age=age return that; } var Person1=new Person("张三",18); var Person2=new Person("Li Si",19); Strict ModeThis has some magical behavior in strict mode and non-strict mode function test() { return this; } # If "use strict" is added before js, it means strict mode "use strict"; function test() { return this; } This shows that in a function in non-strict mode, the owner of the function is bound to this by default. So the global value can be printed, but in strict mode the function is not bound to this, so this is undefined. SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Solution to CSS flex-basis text overflow problem
Result:Implementation code: html <!-- Please h...
Use scenarios: The project's pages need to lo...
1. Differences in network configuration between C...
1. Command Introduction The ln command is used to...
Table of contents 1. List traversal 2. The role o...
CentOS8 was released a few days ago. Although it ...
Table of contents Project Background start Create...
1. Background Use LDAP to centrally manage operat...
This article uses examples to illustrate the opti...
Problem: The null type data returned by mybatis d...
Table of contents Preface Solution: Step 1 Step 2...
Today I installed the MySQL database on my comput...
Zero, Background I received a lot of alerts this ...
Normally, when you run a command in the terminal,...
Commonly used commands for Linux partitions: fdis...