jquery简单判断PC端还是移动端时间:2023-03-09 03:04:24 $(function(){ if (!navigator.userAgent.match(/mobile/i)) { //PC端 }else{ //移动端 } })