//获取浏览器窗口高度
var winHeight = 0
if (window.innerHeight) {
winHeight = window.innerHeight
} else if ((document.body) &&(document.body.clientHeight)) {
winHeight = document.body.clientHeight
}
//通过深入Document内部对body进行检测,获取浏览器窗口高度
if (document.documentElement &&document.documentElement.clientHeight) {
winHeight = document.documentElement.clientHeight
}
//DIV高度为浏览器窗口的高度
document.getElementById("login_body").style.height = winHeight + "px"
}
//浏览器窗口变化时
window.onresize = function () {
autodivheight()//浏览器窗口发生变化时同时变化DIV高度
}
//浏览器重新加载时
window.onload = function () {
autodivheight()//浏览器窗口发生变化时同时变化DIV高度
}
//js部分$(document).ready(function() {
$("#button").click(function() {
alert("高:"+$(document).height()+" 宽:"+$(document).width())
})
}) <!-- html 部分 -->
<button id="button">点击显示</button>
你真确定不好使?检查一下jquery路径吧。