$("hoge").bind("touchstart",function(e){
var e = event.touches[0];
console.log(e.pageX)
})だけでなく
$("hoge").bind("touchstart",function(e){
var event = e.originalEvent.changedTouches[0];
console.log(event.pageX)
})でも取得できるっぽい。
$("hoge").bind("touchstart",function(e){
var e = event.touches[0];
console.log(e.pageX)
})$("hoge").bind("touchstart",function(e){
var event = e.originalEvent.changedTouches[0];
console.log(event.pageX)
})この広告は90日以上新しい記事の投稿がないブログに表示されております。