其他分享
首页 > 其他分享> > 用HBuilderX打包的wap2app,判断页面是浏览器打开还是app打开

用HBuilderX打包的wap2app,判断页面是浏览器打开还是app打开

作者:互联网

参考:https://ask.dcloud.net.cn/question/94515?notification_id-84803__rf-false__item_id-25486

不用引用uniapp任何js,直接使用下面代码:

if(navigator.userAgent.indexOf('Html5Plus') == -1) {
    alert("浏览器");    
}else{
    alert("app");
}

 

标签:__,浏览器,app,wap2app,alert,打开,id
来源: https://blog.csdn.net/ycs_0405/article/details/120863340