JavaScript 同时调用网页中的多个函数效果
内容摘要
JavaScript 同时调用同一网页内的多个函数,点击按钮后执行多次函数,比如连续弹出多次窗口。
< html>< head>< title>同时调用多个函数</title>< script
文章正文
JavaScript 同时调用同一网页内的多个函数,点击按钮后执行多次函数,比如连续弹出多次窗口。
< 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>
<script type="text/javascript">BAIDU_CLB_fillSlot("160927");</script>
代码注释