<small id='lwBRy'></small><noframes id='lwBRy'>

    1. <i id='lwBRy'><tr id='lwBRy'><dt id='lwBRy'><q id='lwBRy'><span id='lwBRy'><b id='lwBRy'><form id='lwBRy'><ins id='lwBRy'></ins><ul id='lwBRy'></ul><sub id='lwBRy'></sub></form><legend id='lwBRy'></legend><bdo id='lwBRy'><pre id='lwBRy'><center id='lwBRy'></center></pre></bdo></b><th id='lwBRy'></th></span></q></dt></tr></i><div id='lwBRy'><tfoot id='lwBRy'></tfoot><dl id='lwBRy'><fieldset id='lwBRy'></fieldset></dl></div>
      <tfoot id='lwBRy'></tfoot>
        <bdo id='lwBRy'></bdo><ul id='lwBRy'></ul>

      <legend id='lwBRy'><style id='lwBRy'><dir id='lwBRy'><q id='lwBRy'></q></dir></style></legend>

    2. JavaScript 中的 this 绑定规则详解

      我将为您详细讲解“JavaScript 中的 this 绑定规则详解”。该攻略将包含以下几个部分:

        <tbody id='ecHIC'></tbody>

      <small id='ecHIC'></small><noframes id='ecHIC'>

      <legend id='ecHIC'><style id='ecHIC'><dir id='ecHIC'><q id='ecHIC'></q></dir></style></legend>
      • <tfoot id='ecHIC'></tfoot>

            <i id='ecHIC'><tr id='ecHIC'><dt id='ecHIC'><q id='ecHIC'><span id='ecHIC'><b id='ecHIC'><form id='ecHIC'><ins id='ecHIC'></ins><ul id='ecHIC'></ul><sub id='ecHIC'></sub></form><legend id='ecHIC'></legend><bdo id='ecHIC'><pre id='ecHIC'><center id='ecHIC'></center></pre></bdo></b><th id='ecHIC'></th></span></q></dt></tr></i><div id='ecHIC'><tfoot id='ecHIC'></tfoot><dl id='ecHIC'><fieldset id='ecHIC'></fieldset></dl></div>
              <bdo id='ecHIC'></bdo><ul id='ecHIC'></ul>

              • 我将为您详细讲解“JavaScript 中的 this 绑定规则详解”。该攻略将包含以下几个部分:

                1. JavaScript 中的 this 指代什么
                2. this 绑定规则的类型和用法
                3. 示例说明

                1. JavaScript 中的 this 指代什么

                在 JavaScript 中,this 关键字的值取决于函数的调用方式。this 通常指代当前执行上下文的对象。在全局作用域中,this 指代全局对象(window)。在函数内部,this 还可以指代其他对象,比如函数的调用对象。

                2. this 绑定规则的类型和用法

                在 JavaScript 中,this 绑定规则包含以下四种类型:

                2.1 默认绑定

                当函数调用时,如果没有使用任何其他的符合下面三种规则的绑定,那么 this 将会被默认绑定到 window 对象(或全局对象)上。

                function foo() {
                  console.log(this); // window 对象(或全局对象)
                }
                
                foo();
                

                2.2 隐式绑定

                当函数作为对象的方法调用时,this 将会被隐式绑定到该对象上。

                const obj = {
                  name: "张三",
                  sayName() {
                    console.log(this.name);
                  }
                };
                
                obj.sayName(); // "张三"
                

                2.3 显式绑定

                当使用 call、apply 或 bind 方法时,this 将会被显式绑定到指定的对象上。

                function foo() {
                  console.log(this.name);
                }
                
                const obj = { name: "张三" };
                
                foo.call(obj); // "张三"
                

                2.4 new 绑定

                当使用 new 关键字调用构造函数时,this 将会被绑定到新创建的对象上。

                function Person(name) {
                  this.name = name;
                }
                
                const obj = new Person("张三");
                console.log(obj.name); // "张三"
                

                3. 示例说明

                下面分别是两个示例说明:

                示例一:隐式绑定

                const person = {
                  name: "张三",
                  sayHi() {
                    console.log(`Hi, 我是 ${this.name}`);
                  },
                  // 对象的方法中返回函数
                  getSayHi() {
                    return this.sayHi;
                  }
                };
                
                const person2 = {
                  name: "李四"
                };
                
                person.getSayHi().call(person2); // Hi, 我是 李四
                

                在上面的示例中,person 对象中的 getSayHi() 方法返回了该对象的 sayHi 方法。当我们使用 call 方法,将 person2 对象作为 this 传递给 getSayHi() 方法的返回值时,this 将会指向 person2 对象。

                示例二:显式绑定

                function sayHi() {
                  console.log(`Hi, 我是 ${this.name}`);
                }
                
                const person = {
                  name: "张三"
                };
                
                const person2 = {
                  name: "李四"
                };
                
                const boundSayHi = sayHi.bind(person);
                
                boundSayHi(); // Hi, 我是 张三
                
                boundSayHi.call(person2); // Hi, 我是 张三
                

                在上面的示例中,使用 bind 方法将 sayHi 函数绑定到 person 对象上。然后,我们通过调用 boundSayHi() 方法,this 将会指向 person 对象。但是,当我们使用 call 方法并将 person2 对象作为 this 传递给 boundSayHi() 方法时,this 仍然指向 person 对象。这是因为,bind 方法创建的新函数无法被 call 方法覆盖。

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                treetable.js没有checked做联动。于是自己基于treetable开发的一个小功能,希望能和大家一起交流一下。 1. 在当前HTML文档checked监听函数中增加以下代码 //联动 table.on('checkbox(quan_list)', function(obj){ //console.log(obj); //当前id var id = obj.
                当使用Javascript的attachEvent来绑定事件时,我们希望能够给事件处理函数传递一些参数,但是attachEvent本身并不支持传递参数。下面介绍两种解决方法。
                KnockoutJS是一款流行的JavaScript库,针对一个web应用程序的建立提供了比较好的基础架构。其中,表单的数据绑定功能是KnockoutJS最为常用的功能之一。本文将详细讲解KnockoutJS 3.x
                下面是用javascript实现改善用户体验之alert提示效果的完整攻略。
                在学习JavaScript编写贪吃蛇游戏之前,需要掌握以下的前置知识:

                <small id='UrYT1'></small><noframes id='UrYT1'>

              • <tfoot id='UrYT1'></tfoot>
                      <i id='UrYT1'><tr id='UrYT1'><dt id='UrYT1'><q id='UrYT1'><span id='UrYT1'><b id='UrYT1'><form id='UrYT1'><ins id='UrYT1'></ins><ul id='UrYT1'></ul><sub id='UrYT1'></sub></form><legend id='UrYT1'></legend><bdo id='UrYT1'><pre id='UrYT1'><center id='UrYT1'></center></pre></bdo></b><th id='UrYT1'></th></span></q></dt></tr></i><div id='UrYT1'><tfoot id='UrYT1'></tfoot><dl id='UrYT1'><fieldset id='UrYT1'></fieldset></dl></div>
                        <tbody id='UrYT1'></tbody>
                      <legend id='UrYT1'><style id='UrYT1'><dir id='UrYT1'><q id='UrYT1'></q></dir></style></legend>

                          <bdo id='UrYT1'></bdo><ul id='UrYT1'></ul>