1 Star 2 Fork 0

Weldon0/heimahr-45

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.html 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
武晓慧 提交于 2023-08-12 17:27 . feat:开发组织架构
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<script>
// const age = 100
var age = 100;
// 静态查找,不用管他怎么调用的,直接函数怎么定义
// this的指向是动态查找,不用管他怎么定义,直接看他怎么调用
const userInfo = {
age: 1000,
foo() {
console.log(age)
console.log(this) //
console.log(this.age) // 100
},
}
// 函数内部的this指向window,vue项目开启了严格模式
// userInfo.foo()
const foo = userInfo.foo; //
// foo()
function bar() {
const age = 10000;
function fooz() {
foo() // foo函数内部的this指向全局对象
}
}
setTimeout(function () {
console.log(this)
})
userInfo.bar = bar
userInfo.bar();
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weldon/heimahr-45.git
git@gitee.com:weldon/heimahr-45.git
weldon
heimahr-45
heimahr-45
main

搜索帮助