Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Javascript
- 쿠키
- 시간계산
- strtotime
- HTML
- input
- attr
- mysql
- ucfirst
- File
- CSS
- php
- 세션
- mb_strimwidth
- date
- date포맷
- indexOf
- JQuery
- disabled
- parent of iframe
- 세션사용법
- 문자열포함여부
- 이전주소
- strpos
- 웹프로그래밍
- accept
- Meta Tag
- SubString
- element추가
- Selector
Archives
- Today
- Total
목록holding (1)
Heojju
[JavaScript] 더블클릭, 롱클릭 이벤트
위 버튼을 길게 누르거나 더블클릭 해보세요. $(document).ready(function(){ var timer; var istrue = false; function mouseDown(){ istrue = true; timer = setTimeout(function(){ holding();},3000); } function holding(){ if(timer) clearTimeout(timer); if(istrue){ alert('holding'); } } function mouseUp(){ istrue =false; } function dbClick(){ alert('double click'); } });
웹개발/JavaScript
2017. 6. 23. 13:30