hello,我是爱学编程的小圆子。好久没更新了呢,emmmmmmm.......
今天我们来学function function_name(...) {}
function是触发事件的时候触发{}里面的代码的代码
废话不多说,上模板
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML</title> </head> <body> <button type="button" onclick="button()">点我试试</button> <!-- 也可以替换成input,但是type值是button,type必填 --> </body> <script type="text/javascript> function button() { //这里只要点击按钮就执行这里的代码 alert("hi!") } </script> </html>
它的原理是你一点击按钮就会触发事件button()
然后
function
负责执行代码
它的语法是function function_name() {}
好了,下一期我们学getElementById/getElementByTagName/getElementClass
但是注意,javascript区分大小写,function不能写成FUNCTION或Function
好了,有什么问题可以在评论区留言
Bye~