window.load=init()
function init(){
a()
b()
}
function a(){
alert("a")
}
function b(){
alert("b")
}
这里分析Javascript 同时调用同一网页内的多个函数的实现方法,点击按钮后执行多次函数,比如连续弹出多次窗口。具体代码如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<title>同时调用多个函数</title>
<script language="javascript">
<!--
function fun1(){
alert("这是fun1")
}
function fun2(){
alert("这是fun2")
}
//-->
</script>
</head>
<body>
<input type="button" value="单击我" onClick="fun1(),fun2()">
</body>
</html>
运行该程序可弹出alert窗口,关闭后可弹出第二个窗口。