首頁 > web前端 > js教程 > js中this用法實例詳解_javascript技巧

js中this用法實例詳解_javascript技巧

WBOY
發布: 2016-05-16 16:00:54
原創
958 人瀏覽過

本文實例講述了js中this用法。分享給大家供大家參考。具體如下:

1. 指向window

全域變數

alert(this) //返回 [object Window]
登入後複製

全域函數

function sayHello(){
  alert(this);
}
sayHello();
登入後複製

2. 指向該物件(在全域裡面this指向window,在某個物件裡面this指向該對象,在閉包裡面this指向window)

var user="the Window";
var box={
  user:'the box',
  getThis:function(){
    return this.user;
  },
  getThis2:function(){
    return function (){
      return this.user;
    }
  }
};
alert(this.user);//the Window
alert(box.getThis());//the box
alert(box.getThis2()());
//the Window (由于使用了闭包,这里的this指向window)
alert(box.getThis2().call(box));
//the box 对象冒充(这里的this指向box对象)
登入後複製

3. 用apply,call改變函數的this指向

function sum(num1, num2){
  return num1+num2;
}
function box(num1, num2){
  return sum.apply(this, [num1, num2]);
  //this 表示window的作用域 box冒充sum来执行
}
console.log(box(10,10)); //20
登入後複製

4. new 物件

function Person(){
   console.log(this) //将 this 指向一个新建的空对象
}
var p = new Person();
登入後複製

希望本文所述對大家的javascript程式設計有所幫助。

相關標籤:
js
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板