안드로이드, IOS, PC 구분방법
마스터욱
0
30
0
0
2020-06-02 01:04:11
if(/android/i.test(navigator.userAgent))
{
// Android 웹뷰
}
else if(/iPhone|iPad/i.test(navigator.platform))
{
try
{
// iOS 웹뷰
}
catch(e)
{
// iOS 모바일 브라우저
}
}
else
{
// PC, Android 브라우저
}