var resizeTimer = null;
function doResize(){
var url = '${ctx}/aa/monitor/alar/recharge.jsp';
window.location.href = url;
//alert("width="+document.documentElement.clientWidth + " Height="+document.documentElement.clientHeight);
}
window.onresize = function(){
if(resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout("doResize()",0);
}
window.onresize = function()
{
var url = '${ctx}/bomc3/monitor/alar/recharge.jsp';
window.location.href = url;
};
另外获取宽高:
document.documentElement.clientWidth
parent.document.body.clientWidth
本文介绍了JavaScript中利用window.onresize事件实现页面重定向,并通过document.documentElement.clientWidth和parent.document.body.clientWidth获取屏幕宽度和高度的方法。
4068

被折叠的 条评论
为什么被折叠?



