mirror of
https://github.com/qianguyihao/Web.git
synced 2024-11-01 13:34:46 +08:00
21 lines
510 B
HTML
21 lines
510 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Document</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script>
|
||
|
|
||
|
function foo() {
|
||
|
a = 2; // 此处的a相当于window.a
|
||
|
console.log(a);
|
||
|
}
|
||
|
|
||
|
console.log(a); //打印结果是2
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|