摘要:
事件中的this和事件对象 this 1.行内: <button type="button" onclick="fn(this)">xxx</button> <script type="text/javascript"> function fn (e) { console.log(e,this)// 阅读全文
摘要:
事件类型 鼠标事件 onclick 、ondblclick 、onmousedown、onmouseup、onmouseover、 onmousemove、onmouseleave 、onmouseenter、 onmouseout 、onwheel 、onscroll 、onload 1、clic 阅读全文
摘要:
事件 事件,就是函数在某种状态下被调用.JS捕捉到的发生在网页上的行为,官方称为事件句柄,是交互体验的核心功能 事件的三要素: 1 事件源 2 事件类型(点中,点中不松开,鼠标滚动...) click 3 事件处理程序handler 绑定事件 1.行内绑定方式 在标签行内 的事件值上写上标志"jav 阅读全文