js 判断是不是手机访问时间:2022-03-15 00:25:31方法一: if(window.navigator.userAgent.toLowerCase().indexOf('mobile')==-1) { alert("pc端") } else{ alert("我是手机访问") }