检测您的网页是否在应用程序的网络视图中查看



我有一个浏览器基础游戏,由于某种原因在linkedIn上共享时不会运行,因为它在WebView中运行。

如何在应用程序的网络视图中查看网页?我特别需要iOS解决方案。

这是一个回答此问题的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/

相关内容

  • 没有找到相关文章

最新更新