$(window).bind("load resize",function(){
document.documentElement.clientWidth >= 600 ? console.log("hello") : console.log("xiaoyu600")
});
//第二种
$(window).bind("load resize",function(){
if(document.documentElement.clientWidth >= 600) console.log("hello111")
});