首页 > 代码库 > JavaScript函数调用

JavaScript函数调用

一、第一种情况:在<script></script>标签内调用。

  

 1  <script type="text/javascript">
 2     function add()
 3     {
 4          sum = 1 + 2;
 5          alert(sum);
 6     }
 7   add();//调用函数,直接写函数名。
 8 </script>
 9 
10 另一种写法
11 <script type="text/javascript">
12     function add(a, b) {
13         sum = a + b;
14         alert(sum);
15     } //  只需写一次就可以
16     add(1, 2);
    
add(3, 4);//如有多个则会顺着显示
17 </script>

 

二、第二种情况:在HTML文件中调用,如通过点击按钮后调用定义好的函数。

  

<html>
<head>
<script type="text/javascript">
   function add()
   {
         sum = 1 + 2;
         alert(sum);
   }
</script>
</head>
<body>
<form>
<input type="button" value="点我" onclick="add()">  //按钮,onclick点击事件,直接写函数名
</form>
</body>
</html>

 

JavaScript函数调用