除IE外的浏览器查看窗口大小和位置信息: //The overall size of the browser window on the desktop var windowWidth = window.outerwidth; var windowHeight = window.outerHeight; //This is the position of the browser window on the desktop var windowX = window.screenX; var win
function getClientSize() { var c = window, b = document, a = b.documentElement; if (c.innerHeight) { return { width: c.innerWidth, height: c.innerHeight } } else { if (a && a.clientHeight)