this-对象方法调用
Posted 程序员入门到放弃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this-对象方法调用相关的知识,希望对你有一定的参考价值。
<!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-对象方法调用的主要内容,如果未能解决你的问题,请参考以下文章