//安卓客户端
const isAndroid = window.navigator.userAgent.indexOf("Android") >= 0;
//IOS客户端
const isIOS = /(iPhone|iPad|iPod|iOS|Mac)/i.test(navigator.userAgent);
//判断app
const userAgent = window.navigator.userAgent;
const isApp = userAgent.indexOf("自定义参数") !== -1 || userAgent.search("自定义参数") !== -1 || /(自定义参数)/.test(userAgent);
//微信内置浏览器
const isWeChat = navigator.userAgent.match(/(MicroMessenger)/i) !== null;
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。