2017-02-13 1 views

답변

1

문제점 :

$touch.bind(element, { 
    start: ..., 
    move: ..., 
    end: function(touchInfo, e) { 
     ... 
     e.target.click(); 
    } 
}); 

그냥 touchend 함수의 바닥에 e.target.click()를 추가.

관련 문제