7

我正在使用 Jquery 和 Jquery Mobile 为 Android 开发一个 PhoneGap 应用程序。

我有一个项目列表,需要两个事件绑定到列表中的每个项目。我需要一个“taphold”事件和一个“click”事件。我遇到的问题是当我执行“taphold”时,会触发正确的“taphold”事件。但是,一旦我释放,点击事件也会被触发。如何防止点击事件在点击后触发?

代码:

function LoadMyItems(items) {

for(var idx in items)
{
    var itemLine = '<div class="my_item" id="my_item_'+items[idx].user_item_id+'">' +
           '<img class="item_icon_32" src=./images/graphicFiles/Icon48/'+items[idx].item.graphic.graphicFiles.Icon48.filename+' />' +
           items[idx].item.name+    
           '</div>';
    $('#my_list').append('<li>'+itemLine+'</li>');
        $('#my_item_'+items[idx].user_item_id).bind('taphold', {userItem:items[idx]},ShowMyItemInfo);
        $('#my_item_'+items[idx].user_item_id).bind('click tap', {userItem:items[idx]},FitMyUpgradeItem);
        console.log('UserItem '+items[idx].user_item_id+' loaded and events bound');
    }
    $('#my_items_loader').hide();
    myScroll.refresh();
}

在以下建议之后,这就是我的最终结果。这适用于 iScroll 对象。

function LoadMyItems(items) {

for(var idx in items)
{
    var itemLine = '<div class="my_item" id="my_item_'+items[idx].user_item_id+'">' +
                   '<img class="item_icon_32" src=./images/graphicFiles/Icon48/'+items[idx].item.graphic.graphicFiles.Icon48.filename+' />' +
                   items[idx].item.name+    
                   '</div>';
    $('#my_list').append('<li>'+itemLine+'</li>');

    (function(index) {
        var tapTime = 0;
        var xPos = 0;
        var yPos = 0;
        $('#my_item_'+items[index].user_item_id).bind('vmousedown vmouseup', function (event) {
            if (event.type == 'vmousedown') {

                tapTime = new Date().getTime();
                xPos = event.pageX;
                yPos = event.pageY;

                var timer = setTimeout(function() {
                    var duration = (new Date().getTime() - tapTime);
                    var xDiff = Math.abs(mouseXPos - xPos);
                    var yDiff = Math.abs(mouseYPos - yPos);
                    if(duration >= 700 && (yDiff <= 40 || mouseXPos == 0))
                        ShowItemInfo(items[index].item);
                },750);
            } else {
                //event.type == 'vmouseup'
                var duration = (new Date().getTime() - tapTime);
                var xDiff = Math.abs(event.pageX - xPos);
                var yDiff = Math.abs(event.pageY - yPos);
                tapTime = new Date().getTime();
                if (duration < 699 && yDiff <= 40) {
                    //this is a tap
                    FitMyUpgradeItem(items[index]);
                }
            }
        });

        $('#my_item_'+items[index].user_item_id).bind('touchmove',function(event) {
            event.preventDefault();
        });
    })(idx);

    console.log('UserItem '+items[idx].user_item_id+' loaded and events bound');
}
$('#my_items_loader').hide();
myScroll.refresh();
}
4

4 回答 4

12

而不是使用tapand taphold(我尝试使用但遇到了同样的问题,这似乎是taphold事件的固有问题),您可以使用vmousedown并设置一个标志,然后绑定vmouseup以确定它是 atap还是 a taphold

var tapTime = 0;
$('#my_item_'+items[idx].user_item_id).bind('vmousedown vmouseup', function (event) {
    if (event.type == 'vmousedown') {
        tapTime = new Date().getTime();
    } else {
        //event.type == 'vmouseup'
        //here you can check how long the `tap` was to determine what do do

        var duration = (new Date().getTime() - tapTime);
        if (duration > 3000) {
            //this is a tap-hold
            ShowMyItemInfo(items[idx]);
        } else {
            //this is a tap
            FitMyUpgradeItem(items[idx]);
        }
    }
});

为了使其正常工作,您必须在循环代码周围添加一个 IIFE,或者ShowMyItemInfo(items[idx]);在不引用更改循环每次迭代的变量的情况下更改工作。一个简单的创建 IIFE 就是使用$.each(). 否则,您的循环将如下所示:

for(var idx in items)
{
    (function (idx) {
        ...
    })(idx);
}

IIFE = 立即调用函数表达式。它允许我们对传入 IIFE 的变量的当前状态进行“快照”。所以当我们传入时idx(从技术上讲,第二个实例是传入的变量,第一个实例是 IIFE 中可用的变量,ids_new为了简单起见,可以将其更改为类似的东西),传入的值将保存在何时事件tap处理程序触发。

更新

您还可以设置超时来确定taphold而不是使用vmouseup事件:

//setup a timer and a flag variable
var tapTimer,
    isTapHold = false;
$('#my_item_'+items[idx].user_item_id).bind('vmousedown vmouseup', function (event) {
    if (event.type == 'vmousedown') {

        //set the timer to run the `taphold` function in three seconds
        //
        tapTimer = setTimeout(function () {
            isTapHold = true;
            ShowMyItemInfo(items[idx]);
        }, 3000);
    } else {
        //event.type == 'vmouseup'
        //clear the timeout if it hasn't yet occured
        clearTimeout(tapTimer);    

        //if the flag is set to false then this is a `tap` event
        if (!isTapHold) {
            //this is a tap, not a tap-hold
            FitMyUpgradeItem(items[idx]);
        }

        //reset flag
        isTapHold = false;
    }
});

这样,事件将在用户按住手指三秒钟后触发。然后tap事件处理程序只会在这三秒钟没有发生时触发。

于 2012-05-08T19:20:14.653 回答
6

只需将其设置在文档顶部或定义偶数之前的任何位置:

$.event.special.tap.emitTapOnTaphold = false;

然后你可以像这样使用它:

$('#button').on('tap',function(){
    console.log('tap!');
}).on('taphold',function(){
    console.log('taphold!');
});
于 2014-02-18T08:59:51.057 回答
1

就个人而言,我认为这里的答案使问题过于复杂。如果您只是想要一种简单的方法来继续使用 taphold 事件并忽略释放 taphold 时触发的 click 事件,那么我在自己的项目中解决了同样的问题:

// We will use this flag to ignore click events we don't want
var skipNextClick = false;

//Set up your event handler.  You could do these using two handlers or one.  I chose one.

$('div.element').on('click taphold', function (e) {
    //set up a quick bool flag that is true if click
    var isClick = (e.type == 'click');

    if (isClick && !skipNextClick) {
        //run your code for normal click events here...

    }
    else if (isClick && skipNextClick) {
        //this is where skipped click events will end up...

        //we need to reset our skipNextClick flag here,
        //this way, our next click will not be ignored
        skipNextClick = false;
    }
    else {
        //taphold event

        //to ignore the click event that fires when you release your taphold,
        //we set the skipNextClick flag to true here.
        skipNextClick = true;

        //run your code for taphold events here...

    }
});
于 2015-08-10T18:47:14.747 回答
0

改用 tap\vclick 和 taphold -- Tap 事件在点击后被触发两次。

$('#my_item_'+items[idx].user_item_id).bind('vclick', ... 
$('#my_item_'+items[idx].user_item_id).bind('taphold', ...

在这个例子中,点击实际上没有在点击之后被调用..在这里检查它:http: //jsfiddle.net/YL8hj/43/

编辑:

jQuery Mobile 自动将触摸事件绑定到某些元素。将 iScroll 与 jQuery Mobile 结合使用时,最好将单独的函数绑定到 'touchmove' 事件并防止事件冒泡( event.preventDefault() )。通过这样做,当用户与 iScroll 元素交互时,jQuery Mobile 将无法处理触摸事件。

http://appcropolis.com/blog/jquery-wrapper-for-iscroll/ 信用https://stackoverflow.com/a/9408567/643500

于 2012-05-08T16:36:41.903 回答