<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <ti…
1.在一般函数中使用 this 指全局对象 window function fn(){ this.x = 1 } fn(); //相当于window.fn() 2.作为对象方法使用 this 指该对象 function fn(){ alert(this.x) //this是调用该函数的obj对象 输出test } var obj = {'fn':fn,'x':'test'} obj.fn(); 3.作为构造函数使用 this 指new 函数出的对象 function fn(){ this.x =…