函数(方法)定义和调用通过 function 关键字和自定义方法名 既可定义一个函数。 如下:function test(x){ //定义 alert(x); } test(3);//调用注意:function指出这是一个函数定义;test是函数的名称;(x)括号内列出函数的参数,多个参数以,分隔;{ ... }之间的代码是函数体,可以包含若干语句,甚至可以没有任何语句。 Last modification:February 23, 2018 © Allow specification reprint Support Appreciate the author AliPayWeChat Like If you think my article is useful to you, please feel free to appreciate