Posted in Javascript onMay 28, 2016
关于function类中定义变量this的简单说明
<!DOCTYPE html> <html> <head> </head> <script> function TObject(){ this.name1 = "aa";//这里不能写name,name是window的变量。否则无法得到验证结果 } var t = new TObject();//执行中,this代表t alert("window1="+this.name1);//没有值 alert("t="+t.name1);//有值 TObject();//执行中,this代表window alert("window2="+this.name1); </script> <body> </body> </html>
以上这篇关于function类中定义变量this的简单说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
关于function类中定义变量this的简单说明
- Author -
jingxian声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@