码迷,mamicode.com
首页 > 其他好文 > 详细

给同一个按钮添加单双击事件

时间:2017-08-03 01:08:16      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:round   div   nbsp   双击   ret   bsp   lang   pre   function   

1.单双击事件的添加。

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>单双击事件</title>
 6 </head>
 7 <body>
 8 <input type="button" onclick="return fun(1)" ondblclick="return fun(2)" value="按钮">
 9 <script>
10     var dblnum=0;
11     function fun(num){
12         dblnum=num;
13         if(dblnum==1){
14             window.setTimeout(function(){
15                 if(dblnum!=2){
16                     console.log(单机);
17                     dblnum=0;
18                 }
19 
20             },500)
21         }
22         if(dblnum==2){
23             console.log("双击");
24             return false;
25         }
26     }
27 </script>
28 </body>
29 </html>

 

给同一个按钮添加单双击事件

标签:round   div   nbsp   双击   ret   bsp   lang   pre   function   

原文地址:http://www.cnblogs.com/chengyunshen/p/7277334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!