Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 395 Bytes

qrH5getVersion.md

File metadata and controls

12 lines (8 loc) · 395 Bytes

获取企业微信的 客户端版本号

const ua =  navigator.userAgent;
const version = ua.match(/wxwork\/([\d.]+)/)[1]

官方说明

  • 企微的UA

  • 其中wxwork是企业微信关键字,2.1.0为用户安装的微信版本号。MicroMessenger是微信的关键字。