💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
事件就是用户或浏览器自身执行的某种动作。诸如click、load和mouseover,都是事件的名字。而响应某个事件的函数就叫做[事件处理程序]。事件处理程序的名字以'on'开头。因此click事件的事件处理程序就是onclick。 ## 1.2.1HTML事件处理程序 ~~~ <input value="提交" type="button" onclick="alert('hello world')"> ~~~ ~~~ <input value="提交" type="button" onclick="show()"> <script> function show(){ alert(1) } </script> ~~~ ~~~ <input value="提交" type="button" onclick="alert(value)"> ~~~ ~~~ <form> <input type="text" name="username" value="cheng"> <input type="button" value="输出名字" onclick="alert(username.value)"> </form> ~~~