📄 ex7-5.htm
字号:
<html>
<head><title>函数中变量的作用域 </title>
<script language=javascript>
<!--
var name="张涛";
var hometown="北京";
function hello(){
var name="王丰"; // 局部变量
document.bgColor="pink";
document.write("<h3><br>在函数内部, <em>name</em>变量的值为:" + name);
document.write(" <br><em>hometown</em> 变量的值为:"+ hometown);
}
hello();
document.write("<br><br>在函数外面, <em>name</em>变量的值为:" + name);
document.write(" <br><em>hometown</em> 变量的值为:" + hometown);
//-->
</script>
</head>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -