码迷,mamicode.com
首页 > 其他好文 > 详细

this-对象方法调用

时间:2017-01-21 16:08:22      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:meta   head   images   控制   ima   set   asc   htm   alt   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <script type="text/javascript">

        var name = ‘this is window‘;  //定义window的name属性,看this.name是否会调用到 
            var testObj = { 
                name:‘this is testObj‘, 
                getName:function(){ 
                    console.log(this);  //控制台输出:testObj   //this指向的是testObj对象 
                    console.log(this.name);  //控制台输出: this is testObj 
                } 
            } 
            testObj.getName();  
    
    </script>
</body>
</html>

技术分享

this-对象方法调用

标签:meta   head   images   控制   ima   set   asc   htm   alt   

原文地址:http://www.cnblogs.com/dexin/p/6337086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!