jquery 如何判断浏览器宽度变化?

2024-11-29 18:38:19
推荐回答(3个)
回答1:

function getTotalHeight(){

if($.browser.msie){
return document.compatMode == "CSS1Compat"? document.documentElement.clientHeight :
document.body.clientHeight;
}else{
return self.innerHeight;
}
}

function getTotalWidth (){

if($.browser.msie){
return document.compatMode == "CSS1Compat"? document.documentElement.clientWidth :
document.body.clientWidth;
}else{
return self.innerWidth;
}
}

回答2:

$(window).resize(function() {
XXXX

});

回答3:

不知道 我只是做任务