黑马程序员技术交流社区
标题:
js函数调用问题
[打印本页]
作者:
唐志海
时间:
2014-2-14 11:59
标题:
js函数调用问题
为什么alert(show())除了弹出show run还会弹出 undefined的窗口呢。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>functionDemo.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
<script type="text/javascript">
function show()
{
alert("show run");
}
alert(show());
//alert(show);//调用的是Object的toString方法
</script>
</body>
</html>
复制代码
作者:
Engle
时间:
2014-4-2 10:41
你的show()函数又没有返回值,这么alert(show());肯定会报undefined.
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2