如何在 JavaScript 中调用函数?
JavaScript 同样允许我们编写自己的函数。要稍后在脚本中的另一个位置调用函数,你只需编写该函数的名称即可。
示例
你可以尝试运行以下代码来了解如何在 JavaScript 中调用函数−
<html> <head> <script> function sayHello() { document.write ("Hello there!"); } </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>
广告