javascript中普通函数的使用介绍_Javascript教程-查字典教程网
javascript中普通函数的使用介绍
javascript中普通函数的使用介绍
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:javascript中普通函数的使用functionshow(){document.write("show函数被调用"+"...

复制代码 代码如下:

<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>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类