标签:
var w=0
var h=0
window.onresize = function(){
var ww = document.documentElement.clientWidth
var hh = document.documentElement.clientHeight
if(ww!=w || hh!=h){
location.reload()
w=ww
h=hh
}
}
标签:
原文地址:http://www.cnblogs.com/dieyf/p/4293686.html