1

此脚本可防止在 Mobile Safari 中打开链接。这适用于当 Web 应用程序在 iOS 上处于应用程序模式时(主屏幕书签)。

gist.github.com/1042026

if(("standalone" in window.navigator) && window.navigator.standalone){

    // If you want to prevent remote links in standalone web apps opening Mobile Safari, change 'remotes' to true
    var noddy, remotes = false;

    document.addEventListener('click', function(event) {

        noddy = event.target;

        // Bubble up until we hit link or top HTML element. Warning: BODY element is not compulsory so better to stop on HTML
        while(noddy.nodeName !== "A" && noddy.nodeName !== "HTML") {
            noddy = noddy.parentNode;
        }

        if('href' in noddy && noddy.href.indexOf('http') !== -1 && (noddy.href.indexOf(document.location.host) !== -1 || remotes))
        {
            event.preventDefault();
            document.location.href = noddy.href;
        }

    },false);
}

我的问题是你如何让上面的这个脚本忽略一个类的链接?

例如,我已经使用www.photoswipe.com jquery 插件a.lightbox打开此链接并在灯箱中显示图像。

但是当我使用脚本时,它会终止灯箱启动,它只会自行打开图像。但如果我在上面这个脚本,photoswipe 灯箱工作正常。

有没有人有一些建议或帮助修改此脚本以忽略这些链接a.lightbox

谢谢乔什

4

1 回答 1

1

如果您使用的是 jQuery,您应该能够添加&& !$(noddy).hasClass('lightbox')到您的 if 测试中。

于 2013-04-20T12:58:07.507 回答