获取浏览器的高度和宽度
var width=document.documentElement.clientWidth;
var height=document.documentElement.clientHeight;
监控浏览器大小的变化
<script>
window.onresize = function(){
window.location.reload();
}
<script>