IE的最小宽度和最大宽度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IE的最小宽度和最大宽度相关的知识,希望对你有一定的参考价值。
window.attachEvent('onload', mkwidth); window.attachEvent('onresize', mkwidth); var minwidth = document.getElementById("site").currentStyle['min-width'].replace('px', ''); var maxwidth = document.getElementById("site").currentStyle['max-width'].replace('px', ''); function mkwidth(){ document.getElementById("site").style.width = document.documentElement.clientWidth < minwidth ? minwidth+"px" : (document.documentElement.clientWidth > maxwidth ? maxwidth+"px" : "100%"); };
以上是关于IE的最小宽度和最大宽度的主要内容,如果未能解决你的问题,请参考以下文章