响应式怎么让一段js代码在pc端加载在手机上不加载

2024年05月04日 响应式 代码 加载 懒猪技术

// 第一种 判断屏幕尺寸

if (screen && screen.width > 480) { document.write('');}

// 第二种判断设备

if ( /Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent)) document.write('');

例如: 尺寸大于768像素就加载,则电脑端加载,手机端不加载


本文链接:http://so.lmcjl.com/news/3740/

展开阅读全文
相关内容