1. 程式人生 > >函數的四種調用模式

函數的四種調用模式

var 指向 viewport view this ctype AR brush tle

函數調用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
</body>
<script>
  //函數調用    
  // 函數內部的this指向window
    var age=18;
    var p={
        age:15,
        say:function(){
            console.log(this.age);
        }
    }
    var f1=p.say;   //f1是函數
    f1();   //函數調用-->this:window       -->this.age=18
   
 </script>
</html>

  this 的含義:函數內部的this指向window

函數的四種調用模式