获取Ipad touchstart坐标

发布于 2024-11-14 06:39:10 字数 41 浏览 1 评论 0原文

我想用javascript获取ipad上触摸事件的坐标。我该怎么做?

I would like to obtain the coordinates of a touch event on the ipad in javascript. How would I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

满天都是小星星 2024-11-21 06:39:10

我相信这应该可以解决问题:

var x = event.targetTouches[0].pageX,
    y = event.targetTouches[0].pageY;

更新:
这是一个例子:

<!doctype html>
<html lang="en" class="no-js">
<head>
    <meta charset="utf-8">

    <title>Touch event test</title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>

<body>

<script>
    $(function() {
        var $log = $("#log");

        function updateLog(x, y) {
            $log.html('X: '+x+'; Y: '+y);
        }

        document.addEventListener('touchstart', function(e) {
            updateLog(e.changedTouches[0].pageX, e.changedTouches[0].pageY);
        }, false);

        document.addEventListener('touchmove', function(e) {
            e.preventDefault();
            updateLog(e.targetTouches[0].pageX, e.targetTouches[0].pageY);
        }, false);
    });
</script>

<div id="log"></div>

</body>
</html>

I believe this ought to do the trick:

var x = event.targetTouches[0].pageX,
    y = event.targetTouches[0].pageY;

Update:
Here is an example:

<!doctype html>
<html lang="en" class="no-js">
<head>
    <meta charset="utf-8">

    <title>Touch event test</title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>

<body>

<script>
    $(function() {
        var $log = $("#log");

        function updateLog(x, y) {
            $log.html('X: '+x+'; Y: '+y);
        }

        document.addEventListener('touchstart', function(e) {
            updateLog(e.changedTouches[0].pageX, e.changedTouches[0].pageY);
        }, false);

        document.addEventListener('touchmove', function(e) {
            e.preventDefault();
            updateLog(e.targetTouches[0].pageX, e.targetTouches[0].pageY);
        }, false);
    });
</script>

<div id="log"></div>

</body>
</html>
宁愿没拥抱 2024-11-21 06:39:10

尝试使用:

x = event.originalEvent.pageX;
y = event.originalEvent.pageY;

Try to use:

x = event.originalEvent.pageX;
y = event.originalEvent.pageY;
过期情话 2024-11-21 06:39:10

这是一个老问题,但没有公认的答案,我的 iPad 案例的解决方案如下:

var x = event.originalEvent.touches[0].clientX;
var y = event.originalEvent.touches[0].clientY;

This is an old question, but there is no accepted answer and the solution in my case with the iPad was below:

var x = event.originalEvent.touches[0].clientX;
var y = event.originalEvent.touches[0].clientY;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文