gpt4 book ai didi

cordova - 修饰 jquery mobile 的内部类比

转载 作者:行者123 更新时间:2023-12-01 01:50:27 29 4
gpt4 key购买 nike

我们如何在 jquery mobile 中实现事件行为内部的 touch up。

我希望它的行为与 native ios 按钮完全相同。我们可以点击并按住点击并在按钮内移动手指只有当我在按钮内释放时才会触发事件。如果我在外面发布则取消

最佳答案

jQuery Mobile 支持多种新的触摸事件类别:

点击:点击事件,当用户点击某个元素时触发

点击:点击并按住事件,当用户点击并按住某个元素一段时间时触发大约第二次滑动滑动事件,当用户垂直滑动(20 或更少像素)时触发或水平(30 或更多像素)

向左滑动:向左滑动,当用户向左滑动 30 或更多像素时触发

向右滑动:向右滑动,当用户向右滑动 30 或更多像素时触发所有这些事件都可以使用通常的 jQuery 绑定(bind)、实时或委托(delegate)方法。

如何使用这些触摸事件。

<script>
$("ul").delegate("li", "swiperight", function() {
// The user has swiped to the right on a list view item. Show an edit menu.
$(this).find(".menu-edit").show();
})
</script>

关于cordova - 修饰 jquery mobile 的内部类比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12257241/

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