javascript中普通函数的使用介绍
时间:2020-10-17 23:36:56|栏目:JavaScript代码|点击: 次
复制代码 代码如下:
<html>
<head>
<title>javascript中普通函数的使用</title>
<script>
function show(){
document.write("show函数被调用" + "<br/>");
return 10;
}
var hello = show();//show()函数被调用,将返回值赋值给hello变量。如果函数没有返回值,则返回undefined
document.write(hello + "<br/>");//10
var hello2 = show;//show和hello2指向同一个函数
document.write(hello2 + "<br/>");//打印出show的函数体
hello2();//等同于调用show()函数
</script>
</head>
<body>
</body>
</html>
上一篇:js实现漂浮回顶部按钮实例
栏 目:JavaScript代码
本文标题:javascript中普通函数的使用介绍
本文地址:http://www.codeinn.net/misctech/12969.html