javascript 中 function 用法:函数是一种特殊对象,封装代码块,可重复使用。定义函数使用 functionname(parameter1, parameter2, ...) { / 代码块 / }。调用函数使用 funct...