检测您的网页是否在应用程序的WebView中查看?

时间:2018-12-18 09:03:53

标签: javascript ios uiwebview wkwebview

我有一个基于浏览器的游戏,由于某些原因,例如在LinkedIn上共享时,由于某些原因而无法运行,因为它在webView中运行。

如何检测您的网页是否在应用程序的WebView中查看?我特别需要适用于iOS的解决方案。

1 个答案:

答案 0 :(得分:0)

这是一个JSFiddle,它回答了这个问题:

var standalone = window.navigator.standalone,
        userAgent = window.navigator.userAgent.toLowerCase(),
        safari = /safari/.test( userAgent ),
        ios = /iphone|ipod|ipad/.test( userAgent );

if( ios ) {

        if ( !standalone && safari ) {

                document.getElementById( 'where-am-i' ).textContent = 'browser';

        } else if ( standalone && !safari ) {

                document.getElementById( 'where-am-i' ).textContent = 'standalone';

        } else if ( !standalone && !safari ) {

                document.getElementById( 'where-am-i' ).textContent = 'uiwebview';

        };

} else {

        document.getElementById( 'where-am-i' ).textContent = 'not iOS';

};

https://jsfiddle.net/ThinkingStiff/6qrbn/