我是靠谱客的博主 羞涩钢笔,最近开发中收集的这篇文章主要介绍jq 自动打开浏览器_jQuery判断当前页面是APP内打开还是浏览器打开,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、代码如下:

function check_useragent()

{

var browser = {

versions: function() {

var u = navigator.useragent, app = navigator.appversion;

return {

trident: u.indexof('trident') > -1, //ie内核

presto: u.indexof('presto') > -1, //opera内核

webkit: u.indexof('applewebkit') > -1, //苹果、谷歌内核

gecko: u.indexof('gecko') > -1 && u.indexof('khtml') == -1, //火狐内核

mobile: !!u.match(/applewebkit.*mobile.*/) || !!u.match(/applewebkit/), //是否为移动终端

ios: !!u.match(/(i[^;]+;( u;)? cpu.+mac os x/), //ios终端

android: u.indexof('android') > -1 || u.indexof('linux') > -1, //android终端或者uc浏览器

iphone: u.indexof('iphone') > -1 || u.indexof('mac') > -1, //是否为iphone或者qqhd浏览器

ipad: u.indexof('ipad') > -1, //是否ipad

webapp: u.indexof('safari') == -1 //是否web应该程序,没有头部与底部

};

}(),

language: (navigator.browserlanguage || navigator.language).tolowercase()

}

if (browser.versions.ios) {

return true;

}

else if (browser.versions.android) {

return true;

}

var ua = navigator.useragent.tolowercase();

if(ua.match(/micromessenger/i)=="micromessenger") {

return false;

} else {

return false;

}

}

希望与广大网友互动??

点此进行留言吧!

最后

以上就是羞涩钢笔为你收集整理的jq 自动打开浏览器_jQuery判断当前页面是APP内打开还是浏览器打开的全部内容,希望文章能够帮你解决jq 自动打开浏览器_jQuery判断当前页面是APP内打开还是浏览器打开所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部