第五章 与众不同的this

我们来看下面的代码:

①var name="windows";
function myfun() //定义一个函数myfun
{
console.log("I'm " + this.name );
};
myfun();
①var name="windows";
function myfun() //定义一个函数myfun
{
console.log("I'm " + this.name );
};
myfun();

代码在第五章01.htm、02.htm

JavaScript 中也有this,但这个this 却与C++、C#或Java 等语言的this 不同。一般编程语言的this 就是对象自己,而 JavaScript
的this 却并不一定!this 可能是我,也可能是你,可能是他。

上一篇:ps -aux返回超过100%


下一篇:(转载)c++引用