美文网首页
箭头函数小补充

箭头函数小补充

作者: msqt | 来源:发表于2019-03-01 20:20 被阅读0次

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>菜鸟教程(runoob.com)</title>
    <script>
    window.name='我是Windows的名字'
    let test = function (){
    this.name='我是test对象的名字'
    this.getname=()=>{
    console.log(this.name)
    console.log(this)
    }
    }
    let tese1=new test();
    tese1.getname();
    let test2={
    name:'我是test对象的名字',
    getname:()=>{
    console.log(this.name)
    console.log(this)
    }
    }
    test2.getname();
    </script>
    </head>
    <body>

    <h1>我的第一个 JavaScript 程序</h1>
    <p id="demo">这是一个段落</p>

    <button type="button" onclick="displayDate()">显示日期</button>

    </body>
    </html>

    image.png

    相关文章

      网友评论

          本文标题:箭头函数小补充

          本文链接:https://www.haomeiwen.com/subject/wcmjuqtx.html