반응형
스크롤(touchmove)과 클릭(touchstart)의 구분을 할 때 유용한 코드
특히 상세검색 모바일 작업 시 꼭 필요.
var touchmove;
$('#on').find('li').on({ //터치대상
touchend:function(){
if(touchmove != true){
//touch시 액션
}
},
touchmove:function(){
touchmove = true
},
touchstart:function(){
touchmove = false
}
})
반응형
'퍼블리셔 > jquery' 카테고리의 다른 글
이미지 파일 업로드/프리뷰/삭제/드래그로 위치변경 (0) | 2021.05.12 |
---|---|
하나의 요소에 removeClass와 toggleClass 사용하기 (0) | 2020.12.03 |
input[type="file] custom (0) | 2020.09.25 |
input[type="text"] 숫자만 입력 (0) | 2020.04.06 |
attr과 mouseenter/mouseleave/click 같이 쓰기 (0) | 2019.12.12 |