将网站从脸书网络浏览器重定向到手机的默认浏览器



如何将任何网站从Facebook web浏览器重定向到移动默认浏览器。我想使用javascript来实现这一点。我试过这个

window.open('', '_system');

但没有起作用。有什么建议吗?

我使用这个脚本,它运行得很好,但它重定向到了googlechrome。

<script>
function isFacebookApp() {
var ua = navigator.userAgent || navigator.vendor || window.opera;
return (ua.indexOf("FBAV") > -1) || (ua.indexOf("FBAN") > -1);
}
if (isFacebookApp()) {
var currentLink = location.href;
if (currentLink.indexOf('https') > -1) {
var currentLink = currentLink.replace('https://', '');
currentLink = currentLink.replace('www.', '');
var chromeLink = "intent://" + currentLink + "#Intent;scheme=https;package=com.android.chrome;end";
window.location.href = chromeLink;
}
if (currentLink.indexOf('http') > -1) {
var currentLink = currentLink.replace('http://', '');
currentLink = currentLink.replace('www.', '');
var chromeLink = "intent://" + currentLink + "#Intent;scheme=http;package=com.android.chrome;end";
window.location.href = chromeLink;
}
} 
</script> 

相关内容

  • 没有找到相关文章

最新更新