函数是一组可重用的代码,可以在程序中的任何位置调用。这样就无需重复编写相同的代码。它可以帮助程序员编写模块化代码。
在JavaScript中定义函数的最常见方法是使用function关键字,后跟唯一的函数名称,参数列表(可能为空)以及用花括号括起来的语句块。
这是一个例子-
<script> <!-- function sayHello() { alert("Hello there"); } //--> </script>
要在脚本后面的某个地方调用一个函数,您只需要编写该函数的名称,如下面的代码所示。
这是显示如何在JavaScript中调用函数的示例
<html> <head> <script> function sayHello() { d ocument.write ("你好!"); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "sayHello()" value = "Say Hello"> </form> <p>Use different text in write method and then try...</p> </body> </html>