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