讲的还是不太懂,到底什么是函数
Don’t understand the concept of functions? -PHP Chinese website Q&A-Don’t understand the concept of functions? -PHP Chinese website Q&A
Please watch and learn.
函数就是包裹在花括号中的代码块,前面使用了关键词 function:
function functionname() { 这里是要执行的代码 }
当调用该函数时,会执行函数内的代码。
可以在某事件发生时直接调用函数(比如当用户点击按钮时),并且可由 JavaScript 在任何位置进行调用。
Don’t understand the concept of functions? -PHP Chinese website Q&A-Don’t understand the concept of functions? -PHP Chinese website Q&A
Please watch and learn.
函数就是包裹在花括号中的代码块,前面使用了关键词 function:
当调用该函数时,会执行函数内的代码。
可以在某事件发生时直接调用函数(比如当用户点击按钮时),并且可由 JavaScript 在任何位置进行调用。