摘要: JS判断是否微信浏览器function isWeixinBrowser(){ var ua = navigator.userAgent.toLowerCase(); return (/micromessenger/.test(ua)) ? true : false ;} 阅读全文
posted @ 2016-01-25 20:35 MrZou 阅读(268) 评论(0) 推荐(0) 编辑