码迷,mamicode.com
首页 > 其他好文 > 详细

函数的四种调用模式

时间:2018-05-31 14:46:34      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:this   pre   ble   utf-8   script   title   view   head   on()   

函数调用

<!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

函数的四种调用模式

标签:this   pre   ble   utf-8   script   title   view   head   on()   

原文地址:https://www.cnblogs.com/guangzhou11/p/9116311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!