모바일에서 접속했는지 pc에서 접속했는지 확인 방법
Posted by Albert 3979Day 4Hour 35Min 3Sec ago [2014-05-30]
var filter = "win16|win32|win64|mac";
if( navigator.platform ){
if( filter.indexOf(navigator.platform.toLowerCase())<0 ){
alert("모바일");
}else{
alert("pc");
}
}