JavaScript在IE中应用最大宽度(像素)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript在IE中应用最大宽度(像素)相关的知识,希望对你有一定的参考价值。
var maxWidth = '750'; // Max width of area to be resized var content_area_id = ''; // ID of the element to be resized var resizeTimeout = null; function fixWidth() { var visibleArea = document.documentElement.clientWidth; if (visibleArea > maxWidth) { document.getElementById(content_area_id).style.width = maxWidth; } else { document.getElementById(content_area_id).style.width = visibleArea; } } function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { if (oldonload) { oldonload(); } func(); } } } window.onresize=function(){ if (resizeTimeout) { window.clearInterval(resizeTimeout); } resizeTimeout = setTimeout(fixWidth, 500); } addLoadEvent(fixWidth);
以上是关于JavaScript在IE中应用最大宽度(像素)的主要内容,如果未能解决你的问题,请参考以下文章