jQuery에서 터치 이벤트를 사용하는데 계속 undefined가 떴다.
분명 예전에 사용했던 코드 그대로 사용했는데...그 때는 잘 됐었는데....
1. 예전에 사용한 코드 (event.touches undefined)
$(document).on("touchstart", function(e){ console.log(e.touches[0]) // undefined });
2. event.touches의 사용이 가능한 코드
$(document).on("touchstart", function(e){ console.log(e.originalEvent.touches) // TouchList{0:Touch, length:1, item:function} });
출처 : http://stackoverflow.com/questions/7923609/event-touches-is-always-undefined
'프로그래밍 > tip' 카테고리의 다른 글
[tip] 안드로이드 공기계에서 네트워크 연결이 되지 않을 때 (0) | 2016.01.06 |
---|---|
[tip] Facebook App에서의 공유하기 App Link (android) (0) | 2015.03.06 |
[tip] GreenShock ScrollToPlugin (0) | 2015.02.06 |
[tip] 일차함수 (0) | 2015.02.05 |
[tip] 최초 시작시 scrollTop() 이 적용되지 않을 때 (0) | 2015.01.28 |