2

在我的 jQuery Mobile 应用程序中,我想使用点击和点击事件。我尝试使用将事件处理程序绑定到这些事件的标准方法,但在点击事件的情况下,点击事件总是触发,所以我使用了我在 stackoverflow 上找到的以下方法: jQuery 在点击事件后调用点击事件

$("#list li").live('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
        duration = (new Date().getTime() - tapTime);

        //The tap code
        if(duration >250 && duration <750)
        {

        }
        //The taphold code

        else if (duration >=750) {

 } 

现在,在装有 iOS 5 的 iPhone 上,我遇到了点击事件被触发并且当我向下滚动列表时选择了一个项目的问题。我试图增加点击事件的持续时间,但它似乎在 iOS 中没有效果。有什么建议么?

4

1 回答 1

1

[尝试和测试] 我检查了 jQuery Mobile 的实现。他们每次在“vmouseup”上“taphold”之后都会触发“tap”事件。

如果 'taphold' 已被触发,解决方法是不触发 'tap' 事件。根据需要创建自定义事件或修改源,如下所示:

$.event.special.tap = {
    tapholdThreshold: 750,

    setup: function() {
        var thisObject = this,
            $this = $( thisObject );

        $this.bind( "vmousedown", function( event ) {

            if ( event.which && event.which !== 1 ) {
                return false;
            }

            var origTarget = event.target,
                origEvent = event.originalEvent,
                /****************Modified Here**************************/
                tapfired = false,
                timer;

            function clearTapTimer() {
                clearTimeout( timer );
            }

            function clearTapHandlers() {
                clearTapTimer();

                $this.unbind( "vclick", clickHandler )
                    .unbind( "vmouseup", clearTapTimer );
                $( document ).unbind( "vmousecancel", clearTapHandlers );
            }

            function clickHandler( event ) {
                clearTapHandlers();

                // ONLY trigger a 'tap' event if the start target is
                // the same as the stop target.
                /****************Modified Here**************************/
                //if ( origTarget === event.target) {
                 if ( origTarget === event.target && !tapfired) {
                     triggerCustomEvent( thisObject, "tap", event );
                 }
            }

            $this.bind( "vmouseup", clearTapTimer )
                .bind( "vclick", clickHandler );
            $( document ).bind( "vmousecancel", clearTapHandlers );

            timer = setTimeout( function() {
                tapfired = true;/****************Modified Here**************************/
                triggerCustomEvent( thisObject, "taphold", $.Event( "taphold", { target: origTarget } ) );
            }, $.event.special.tap.tapholdThreshold );
        });
    }
};
于 2012-08-13T20:10:07.773 回答