亚洲中文字幕永久在线全国-美女张开腿让男生桶进来-久久中文字幕资 ,亚洲乱亚洲乱妇小说网_精品久久综合1区2区3区激情_狼色精品人妻

javascript中的this綁定

2020-4-21    前端達人

his是一個關鍵字,表示執(zhí)行當前函數的對象

  • this永遠跟著當前函數走,
  • 永遠是一個對象,

  • 永遠在函數執(zhí)行時才能確定。
  • 1. 默認綁定:沒有明確被隸屬對象執(zhí)行的函數,this指向window


function fn(){
    console.log(this);              //window
    console.log(typeof this);       //object
}
fn();

- 嚴格模式下,this指向undefiend

"use strict";
function fn(){
    console.log(this);              //undefined
}
fn();




日歷

鏈接

個人資料

藍藍設計的小編 http://www.lmkl.com.cn

存檔