gpt4 book ai didi

android 与 iphone 上的 jquery 移动事件

转载 作者:可可西里 更新时间:2023-11-01 06:16:50 24 4
gpt4 key购买 nike

我是 jquery mobile 的新手。我的问题是我需要捕捉 div 上的 vmousemove 事件,因为我需要在这个 div 中拖动图像,就像谷歌地图上的 svg 图像一样。

我在 http://demo.baral.de/test/ 上有一个演示

我有 3 台设备:iphone iOS5Samsung tab 上的 Android 3.2HTC desire 上的 Android 2.2.2。当我“悬停”在绿色 div 上时,我认为当我的手指触摸显示屏上的移动时会有很多“vmousemove”。

iphone 启动:

  • vmouseover
  • vmousedown
  • vmousecancel
  • 很多vmousemove
  • vmouseup

这对我来说似乎很完美

Android 3.2 启动:

  • vmouseover
  • vmousedown
  • vmousecancel
  • vmousemove

Android 2.2.2 启动:

  • vmouseover
  • vmousedown
  • vmousecancel
  • vmousemove(1 次)

在我完成移动并且我的手指离开显示器后它会触发

  • 很多vmousemove
  • vmouseup

这对 jquery mobile 来说是“正常的”吗?错误还是只是错误的代码?

谢谢!

代码:

<!DOCTYPE html> 
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
</head>
<body>
<div data-role="page" data-position="fixed" id="wrapper">
<div id="test" style="width: 200px; height: 200px; background-color: green"></div>
<div id="footer" style="border: 1px solid black; width: 200px;">
<ul></ul>
</div>
</div>
<script type="text/javascript">
$("#wrapper").live('pageinit', function() {
$("#test").bind('vmouseover vmousedown vmousemove vmouseup vclick vmousecancel', function (event) {
$('#footer ul').append("<li>"+event.type+"</li>");
});
});
</script>
</body>

最佳答案

这不是 jquery-mobile 的错误,当您想在鼠标移动时实现某些功能时,无论如何都可以做到,因为它会被触发一次。这可能是设计使然。

关于android 与 iphone 上的 jquery 移动事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9715920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com