18-1-函数中this的指向

Posted zhangyu666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了18-1-函数中this的指向相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body {
            font-family: "Microsoft YaHei", serif;
        }

        body, dl, dd, p, h1, h2, h3, h4, h5, h6 {
            margin: 0;
        }

        ol, ul, li {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        img {
            border: none
        }
    </style>
</head>
<body>

<script>
    // 指向window
    function a() {
        console.log(this);
    }
    a();

    // 指向document
    document.onclick = a
</script>
</body>
</html>

 

以上是关于18-1-函数中this的指向的主要内容,如果未能解决你的问题,请参考以下文章

前端片段整理

箭头函数与this指向问题

箭头函数与this指向问题

箭头函数this的指向

箭头函数的this指向问题

一文搞定JavaScript的this指向问题