• 前端this相关


    前端this相关:

    <script>
        //示例一
        function func1() {
            console.log(this);  //this代指window
        }
        func1();
        //window.func1();
    
    
        //示例二
        function Func() {
            this.name = "jia";  //this代指obj
        }
        var obj = new Func();
        console.log(obj.name);  //jia
    
    
        //示例三
        function Func2() {
            this.name = "kaylee";
            this.show = function () {
                console.log(this);  //this代指obj2
            }
        }
        var obj2 = new Func2();
        obj2.show();
    
    
        //示例四
        var userInfo = {
            name: "jia",
            age: 18,
            show: function () {
                console.log(this);  //this代指userInfo
            }
        };
        userInfo.show();
    
    
        //示例五
        var userInfo2 = {
            name: "kaylee",
            age: 18,
            show: function () {
                console.log(this);  //this代指userInfo2
                (function () {
                    console.log(this);  //this代指window
                })()
            }
        };
        userInfo2.show();
    
    
        //示例五可以写作:
        var userInfo3 = {
            name: "kaylee",
            age: 18,
            show: function () {
                console.log(this);  //this代指userInfo3
                inner();
            }
        };
        userInfo3.show();
    
        function inner() {
            console.log(this);  //this代指window
        }
    
    
        //示例六
        var userInfo4={
            name:"kaylee",
            age:18,
            show:function () {
                console.log(this);  //this代指userInfo4
                var that = this;
                (function () {
                    console.log(that);  //that代指userInfo4
                })()
            }
        };
        userInfo4.show();
    </script>

    总结:

      函数被 对象.函数 执行,那么函数中的this就是该对象

  • 相关阅读:
    linux下创建一个指定大小的文件
    批量替换多个文件中的字符串
    redhat 搭建yum 源
    python ConfigParser 模块
    python yaml 模块
    python xml文件处理
    py2exe 和pyinstaller打包
    wxpython 学习之 --threading
    wxpython 学习之 --文本框与Boxsizer布局管理器
    wxpython 学习之 --窗口分割
  • 原文地址:https://www.cnblogs.com/metianzing/p/7865902.html
Copyright © 2020-2023  润新知