玩笑过后

导航

2018年9月22日 #

更多的事件信息

摘要: DOM2级事件在event对象中提供了detail属性,detail中包含了一个数值,表示在给定的位置发生了多少次单击。 在同一个元素上相继发生一次mousedown和一次mouseup事件作为一次单击。detail从1开始计数,每次单击都会递增,如果鼠标的mousedown和mouseup移动了位 阅读全文

posted @ 2018-09-22 12:38 玩笑过后 阅读(89) 评论(0) 推荐(0) 编辑

鼠标按钮

摘要: getButton: function(event){//鼠标按钮兼容 if (document.implementation.hasFeature('MouseEvents','2.0'))//标准下 { return event.button; }else ... 阅读全文

posted @ 2018-09-22 12:18 玩笑过后 阅读(82) 评论(0) 推荐(0) 编辑