js实时监听窗口变化总结

<script>

window.onresize = function () {

var Width = window.innerWidth//浏览器窗口的内部宽度(包括滚动条)

|| document.documentElement.clientWidth

|| document.body.clientWidth;

var Height = window.innerHeight//浏览器窗口的内部高度(包括滚动条)

|| document.documentElement.clientWidth

|| document.body.clientHeight;

console.log(Width, Height);

}

</script>

扫描二维码关注公众号,回复: 5158177 查看本文章

猜你喜欢

转载自blog.51cto.com/14196440/2349050