Pārlūkprogrammas pašreizējais loga lielums.
Ārējā loga izmēru varat iegūt, izmantojot window.outerWidth un window.outerHeight .
Iekšējā loga izmēru varat iegūt, izmantojot window.innerWidth un window.innerHeight .
Izmantojot IE, jūs varat to iegūt ar document.body.clientWidth un document.body.clientHeight .
Ekrāna loga pozīciju var iegūt, izmantojot window.screenLeft un window.screenTop .
Piemēram:
<script/
alert(window.outerWidth+' x '+window.outerHeight);
</script/
Advertising