發(fā)表日期:2015-08-29 文章編輯:南昌開優(yōu)網(wǎng)絡(luò) 瀏覽次數(shù):4223 標(biāo)簽:JS應(yīng)用
function getWindowHeight(frameObject) { if (document.all) return frameObject.document.body.clientHeight; // IE on Mac and Windows if (document.layers) return frameObject.document.clientHeight; } function getWindowWidth(frameObject) { if (document.all) return frameObject.document.body.clientWidth; // IE on Mac and Windows if (document.layers) return frameObject.document.clientWidth; }