💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
JS获取屏幕尺寸: ``` //定义变量获取屏幕视口宽度,手机尺寸<640,电脑尺寸>=40 var windowWidth = $(window).width(); if(windowWidth < 623) { console.log('手机尺寸'); } if(windowWidth >= 640) { console.log('电脑尺寸'); location.href = '/index.html'; } ``` 其他参考 js检测当前设备是移动端还是PC端:https://www.cnblogs.com/Im-Victor/p/9442355.html js判断当前设备:https://www.cnblogs.com/zhizou/p/11401742.html