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 |
29 | 30 | 31 |
Tags
- HTML
- mysql
- 쿠키
- File
- accept
- 시간계산
- 웹프로그래밍
- date포맷
- Meta Tag
- date
- indexOf
- Javascript
- mb_strimwidth
- attr
- element추가
- SubString
- php
- input
- disabled
- strpos
- 세션
- strtotime
- 이전주소
- CSS
- ucfirst
- 문자열포함여부
- Selector
- parent of iframe
- 세션사용법
- JQuery
Archives
- Today
- Total
Heojju
[JavaScript] 더블클릭, 롱클릭 이벤트 본문
<input type="button" ondblclick="dbClick()" onmousedown="mouseDown()" onmouseup="mouseUp()"
value="버튼"/>
위 버튼을 길게 누르거나 더블클릭 해보세요.
<script>
$(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');
}
});
</script>
'웹개발 > JavaScript' 카테고리의 다른 글
[JavaScript] alert(알림창) / prompt(답받기) (0) | 2017.08.03 |
---|---|
[JavaScript] confirm - 확인알림창 (0) | 2017.08.03 |
[JavaScript] rgb to hex (0) | 2017.06.08 |
[JavaScript] 현재 focus 객체 (0) | 2017.06.08 |
[JavaScript] Date 포맷 (0) | 2017.05.12 |