1 $(window).bind("load resize",function(){ 2 document.documentElement.clientWidth >= 600 ? console.log("hello") : console.log("xiaoyu600") 3 }); 4 //第二种 5 $(window).bind("load resize",function(){ 6 if(document.documentElement.clientWidth >= 600) console.log("hello111") 7 });
原文地址:https://www.cnblogs.com/guoliping/p/11112546.html
时间: 2024-10-28 06:14:26