<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<script>
window.name='我是Windows的名字'
let test = function (){
this.name='我是test对象的名字'
this.getname=()=>{
console.log(this.name)
console.log(this)
}
}
let tese1=new test();
tese1.getname();
let test2={
name:'我是test对象的名字',
getname:()=>{
console.log(this.name)
console.log(this)
}
}
test2.getname();
</script>
</head>
<body>
<h1>我的第一个 JavaScript 程序</h1>
<p id="demo">这是一个段落</p>
<button type="button" onclick="displayDate()">显示日期</button>
</body>
</html>
网友评论