1

スタンドアロンで実行できるモバイル Web アプリがあります。Safari で href を開かないようにし、それらを webapp に保持するために、次のことを行いました。

if (("standalone" in window.navigator) && window.navigator.standalone) {
        // For iOS Apps
        $('a').on('click', function(e){
                    e.preventDefault();
                    var new_location = $(this).attr('href');
                    if (new_location != undefined && new_location.substr(0, 1) != '#' && $(this).attr('data-method') == undefined){
                        window.location = new_location;
                    }
        });
    }

ただし、これにより、a-tag にバインドされている既存のクリック イベントが機能しなくなります。

だから私はこれを試しましたが、うまくいきません:

if (("standalone" in window.navigator) && window.navigator.standalone) {
        // For iOS Apps
        $('a').on('click', function(e){
                var ev = $._data(this, 'events');
                if(!ev && !ev.click) {
                    e.preventDefault();
                    var new_location = $(this).attr('href');
                    if (new_location != undefined && new_location.substr(0, 1) != '#' && $(this).attr('data-method') == undefined){
                        window.location = new_location;
                    }
                }
        });
    }

どんな助けでも大歓迎です!

4

1 に答える 1

0

これは古い質問であることはわかっているので、すでに修正されている可能性がありますが、他の人の助けになる場合に備えて、とにかく答えます. 自動イベントキャンセルをさらに下に移動すると、うまくいくはずです。

そう:

if (("standalone" in window.navigator) && window.navigator.standalone) {
    // For iOS Apps
    $('a').on('click', function(e){
        var new_location = $(this).attr('href');
        if (new_location != undefined && new_location.substr(0, 1) != '#' && $(this).attr('data-method') == undefined){
            window.location.href = new_location;
            return false; // Cancel the usual link-opening
        }
        // If the 'if' block above didn't run, process the click as normal
    });
}
于 2015-09-22T19:13:31.967 に答える