文章39 | 阅读 16503 | 点赞0
本文记录下,在JavaScript中函数中如何调用其他函数的基本写法和用法,直接看一下demo.html
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body>
<script type ="text/javascript">
function doFirst(){
document.write("第一个函数");
}
function doSecond(){
document.write("第二个函数");
}
function start(){
doFirst();
doSecond();
}
start();
</script>
</body>
</html>
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/u011541946/article/details/70849289
内容来源于网络,如有侵权,请联系作者删除!