Skip to content
00:00:00
0

文章发布较早,内容可能过时,阅读注意甄别。

js 判断 tiktok APP 内环境

本来以为关键字是==tiktok==,没想到是...

javascript
const isTikTokEnvironment = () => {
  const userAgent = window.navigator.userAgent.toLowerCase();
  return userAgent.includes("bytedance") || userAgent.includes("bytelocale");
};
最近更新