事件

作者: 丶Romantic | 来源:发表于2018-07-17 11:38 被阅读0次

    鼠标事件1、单击事件 onclick
    2、双击事件 ondblclick
    3、按下 onmousedown
    4、松开 onmouseup
    5、滑到 onmousemove
    6、移入 onmouseenter onmouseover
    7、移出 onmouseleave onmouseout
    8、右键

    div.oncontextmenu=function(e){
             e=e||window.event
             e.preventDefault()
             console.log('123456')
      }
    

    键盘事件1、键盘按下某键 keydown
    2、键盘松开某键 keyup
    3、按下并松开某键触发的事件 keypress

    表单事件1、失焦事件 onblur
    2、聚焦事件 onfocus
    3、内容被改变时 change
    4、内容被选中时 select
    5、按钮事件 submit(提交) reset(重置)需作用在表单之中

    <script>
    var body = document.getElementsByTagName('body')[0]
    body.onkeydown=function(e){
        e=e||window.event
        console.log(e)
    }
    body.onkeyup=function(w){
        w=event||window.event
        console.log(w)
    }
    </script>
    

    其他事件1、加载之后运行文件
    2、窗口大小发生改变时触发的事件
    3、浏览器页面滚动时触发的事件

    相关文章

      网友评论

          本文标题:事件

          本文链接:https://www.haomeiwen.com/subject/weywpftx.html