Teach you how to use JS and JAVA to determine whether it is a WeChat browser

Y2J
Release: 2017-04-28 11:00:06
Original
2743 people have browsed it

In response to project requirements, the mobile web page must be run in the WeChat browser. The first thing that comes to mind is to add js code to the page to verify whether it is the WeChat browser.

The code is as follows:

/*判断是不是微信浏览器*/ 
function isweixin(){ 
    var ua = navigator.userAgent.toLowerCase(); 
    if(ua.match(/MicroMessenger/i)=="micromessenger") { 
        return true; 
    } else { 
        return false; 
    } 
}
   
因为页面有些多,不愿意改动。于是打算用JAVA 过滤器实现
查找资料JAVA 通过
 request..getHeader("user-agent")  可以获取浏览器
String ua = ((HttpServletRequest) request).getHeader("user-agent") 
        .toLowerCase(); 
if (ua.indexOf("micromessenger") > 0) {// 是微信浏览器 
    validation = true; 
}
Copy after login

The above is the detailed content of Teach you how to use JS and JAVA to determine whether it is a WeChat browser. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!