Posted in Javascript onMarch 26, 2014
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <script> var stu ={ m: function(){ var self = this; console.log(this === stu); // ==> true; function f(){ // 调用嵌套函数时this不是指向调用外层函数的上下文 console.log(this === stu); // ==> false; 如果想访问外部函数的this需要将外部函数的this保存在一个变量中。 console.log(self === stu); // ==> true; } f(); } } </script> <body> </body> </html>
JS嵌套函数调用上下文的问题解决
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@