search
HomeWeb Front-endJS TutorialThe pointing meaning of this object
The pointing meaning of this objectSep 25, 2017 am 10:40 AM
thismeaningobject

1. In the function:

function foo(){
   return this;
}

Whoever calls the function points to it; the direct call points to the window;

2. In the event: in the html event, point to the window; in the dom0 event, point to the trigger of the event (the node of the bound element); in the dom2 event, point to the bound element node in non-IE; in IE, point directly to the window;

3. In closure: this points to window;

4. In object: this points to current object; if there are multiple levels of object wrapping , refers to the upper-level object;
(1).

var foo = {
         a:18,
        num:{
         a:10,
           num:function(){
          console.log(this.a);//10
                   }
               }
       }
  foo.num.num();

(2).

var foo = {
        a:18,
         num:{
         num:function(){
         console.log(this.a);//undefined
                   }
               }
       }
  foo.num.num();

5. The call function and the apply function can change the point of this, and the bind function can also change the function point;

6. Constructor module:

Summary : In the constructor, if the return value is a basic data type, then this points to the instance of the constructor; if the return value is an object, then this points to the object;

 function Foo(){           
     this.user = 'my';           
     return {};       
     }       
     var na = new Foo();       
     console.log(na.user);//返回值undefined;
 function Foo(){           
     this.user = 'my';           
     return 1;      
      }       
      var na = new Foo();       
      console.log(na.user);//返回值my

The above is the detailed content of The pointing meaning of this object. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
WICC币是什么?WICC币是什么?Feb 21, 2024 pm 06:00 PM

WICC币是什么?WICC币是WaykiChainCoin的简称,是基于区块链技术的数字货币。WaykiChain作为一条高效、可扩展和安全的公链,致力于为企业和开发者提供完善的区块链基础设施和创新工具。作为WaykiChain生态系统的核心代币,WICC币在平台上扮演着重要角色。WICC币的特点1.安全可靠:WaykiChain采用DPoS共识算法,具备可靠的分布式锁定机制和共识机制,保证了网络的高度安全性。2.高效可扩展:WaykiChain具备毫秒级的交易确认速度,每秒可处理数千笔交易,并

了解PHP中eol的含义了解PHP中eol的含义Mar 20, 2024 am 11:09 AM

深入了解PHP中eol的含义及代码示例在PHP编程中,eol是一个常见的术语,代表着"EndOfLine",即行尾。在不同操作系统中,行尾的表示方式可能不同,这就引出了eol的概念。在Windows系统中,一行的结束由回车符()和换行符()组成,即"";而在Unix/Linux系统中,行尾只由换行符()表示,即""。这样的差异可能会导致在不同操作系统

怎么关闭快手私信显示内容功能?关闭快手私信显示内容什么意思?怎么关闭快手私信显示内容功能?关闭快手私信显示内容什么意思?Mar 21, 2024 pm 05:41 PM

作为国内领先的短视频平台,快手拥有大量用户,私信功能是用户之间互动的重要渠道。然而,一些用户可能觉得私信显示内容的功能让他们感到困扰,他们希望能够有选择地关闭这个功能。一、怎么关闭快手私信显示内容功能?1.打开快手应用,登录个人账号。2.进入快手主界面,点击右下角的“我的”按钮,进入个人中心。3.在个人中心页面,点击头像,进入个人设置。4.在个人设置页面,找到“隐私设置”选项,点击进入。5.在隐私设置页面,找到“私信显示内容”选项,点击进入。6.在私信显示内容设置页面,关闭“私信显示内容”功能的

详解 MySQL 主机名的含义详解 MySQL 主机名的含义Mar 01, 2024 pm 12:03 PM

MySQL主机名的含义及具体用法MySQL是一种流行的开源关系型数据库管理系统,被广泛应用于各种web应用程序中。在MySQL中,主机名是一个重要的概念,它用来指定连接到数据库服务器的主机的名称。在本文中,我们将详细解释MySQL主机名的含义,以及如何在实际开发中使用它。MySQL主机名的含义:在MySQL中,主机名是用来指定允许连接到

详解Javascript对象的5种循环遍历方法详解Javascript对象的5种循环遍历方法Aug 04, 2022 pm 05:28 PM

Javascript对象如何循环遍历?下面本篇文章给大家详细介绍5种JS对象遍历方法,并浅显对比一下这5种方法,希望对大家有所帮助!

pin码是什么 pin码怎么解锁pin码是什么 pin码怎么解锁Feb 22, 2024 pm 04:13 PM

pin码就是指手机sim卡的个人识别密码。解析1pin码(pin1)是电信名词,全名PersonalIdentificationNumber。就是指手机sim卡的个人识别密码。手机pin码是保护手机sim卡的一类安全防范措施,避免他人冒用手机sim卡,要是启动了pin码,那么每次开机后,便要填写4-8位数pin码。当填写pin码无效超过三次时,将自动锁卡保护。解锁要使用PUK码拨通运营商客服电话。补充:pin码怎么解锁1打开设置,在设置页面中点击其他设置。2在其他设置页面中点击设备与隐私。3在设

javascript怎么判断对象是否为空javascript怎么判断对象是否为空Apr 12, 2021 am 10:35 AM

方法:1、使用“JSON.stringify()”方法,将对象转化为json字符串,再判断该字符串是否为"{}";2、使用“Object.keys(对象名称).length==0”判断长度是否为0,进而判断对象是否为空。

什么是USD Coin币?USD Coin币有什么特点?什么是USD Coin币?USD Coin币有什么特点?Mar 06, 2024 pm 06:22 PM

USDCoin:稳定币领域的领军者USDC是一种由Coinbase和Circle合作创建的与美元挂钩的稳定币。其目标是为用户提供一种在加密货币市场中对冲风险和存储价值的选择,确保其价值稳定与美元价值挂钩。特点:与美元挂钩:USDC的价值与美元1:1挂钩,由美元储备作为抵押。这使其成为一种稳定的加密货币,不受加密货币市场波动性的影响。受监管:USDC受到美国金融犯罪执法网络(FinCEN)的监管,并定期接受审计以确保其储备金的准确性。广泛接受:USDC是加密货币市场上接受度最广泛的稳定币之一,可以

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)