2

ユーザーがページとやり取りするのを止めないJqueryモバイルにポップアップが必要です.data-dismissible = "false"は、ページの別の部分がやり取りされて表示されたままになっているときにポップアップが消えません。

私はこれを試しました

 $('#popupNew').popup({ dismissible: false });
 $('#popupNew').popup('open');

ただし、これによりモーダル ポップアップが作成され、ユーザーがページの残りの部分を操作できなくなります。

4

1 に答える 1

6

はじめに

これで必要なものがすべて揃っていることを願っています。

  • ポップアップの外側の面をクリックすると、ポップアップを閉じることができません
  • ポップアップの下の要素にアクセスできるようになりました
  • ポップアップはドラッグ可能です (Firefox、Chrome、Android Chrome でテスト済み)

さらにいくつかのメモ。ここで使用されている JavaScript コードの一部は私のものではありません。モバイル デバイスでドラッグできるようにするための修正について話しているのです。残念ながら、それが誰の解決策だったのか思い出せません。

CSS は、ポップアップが開かれたときにページをクリック可能にするために使用されます。オーバーレイ div 名は popup id とサフィックス -screen の組み合わせで、この場合は です#popupBasic-screen

実施例

作業例: http://jsfiddle.net/Gajotres/tMpf7/

使用したコード

HTML :

<!DOCTYPE html>
<html>
    <head>
        <title>jQM Complex Demo</title>
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
        <!--<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>-->
        <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>              
        <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>    
    </head>
    <body>
        <div data-role="page" id="index">
            <div data-theme="b" data-role="header">
                <h1>Index page</h1>
            </div>

            <div data-role="content">
                <a href="#popupBasic" data-rel="popup" data-role="button" data-inline="true" data-transition="pop" >Basic Popup</a>
                <a data-role="button" id="test">click me</a>                
                <div data-role="popup" id="popupBasic" data-dismissible="false">
                    <a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-right">Close</a>
                    <p>This is a completely basic popup, no options set.</p>
                </div>
            </div>
        </div>    
    </body>
</html>   

Javascript :

$(document).on('pagebeforeshow', '#index', function(){ 
    $('#popupBasic').draggable({
        cursor: 'move'
    });
    $(document).on('click', '#test', function(){ 
        alert('Successful click!');
    });
});

// This is a fix for mobile devices,, rest of the code is not mine

/iPad|iPhone|Android/.test( navigator.userAgent ) && (function( $ ) {

var proto =  $.ui.mouse.prototype,
_mouseInit = proto._mouseInit;

$.extend( proto, {
    _mouseInit: function() {
        this.element
        .bind( "touchstart." + this.widgetName, $.proxy( this, "_touchStart" ) );
        _mouseInit.apply( this, arguments );
    },

    _touchStart: function( event ) {
         this.element
        .bind( "touchmove." + this.widgetName, $.proxy( this, "_touchMove" ) )
        .bind( "touchend." + this.widgetName, $.proxy( this, "_touchEnd" ) );

        this._modifyEvent( event );

        $( document ).trigger($.Event("mouseup")); //reset mouseHandled flag in ui.mouse
        this._mouseDown( event );

        //return false;           
    },

    _touchMove: function( event ) {
        this._modifyEvent( event );
        this._mouseMove( event );   
    },

    _touchEnd: function( event ) {
        this.element
        .unbind( "touchmove." + this.widgetName )
        .unbind( "touchend." + this.widgetName );
        this._mouseUp( event ); 
    },

    _modifyEvent: function( event ) {
        event.which = 1;
        var target = event.originalEvent.targetTouches[0];
        event.pageX = target.clientX;
        event.pageY = target.clientY;
    }

});

})( jQuery );

CSS:

#popupBasic-screen {
    display: none;
}
于 2013-07-23T13:55:11.003 に答える