无标题文档 <script> <BR>function onWidthChange(){ <BR>var w=$(window).width(); <BR>x=(w-1440)/2; <BR>$("#frame").css("width",w); <BR>if(w<1024){ <BR>$("#frame").css("overflow","visible"); <BR>$("#webContent").css("margin-left",x); <BR>}else if(1024<w<1440){ <BR>$("#frame").css("overflow","hidden"); <BR>$("#webContent").css("margin-left",x); <BR>} <BR>setTimeout(onWidthChange,0); <BR>}; <BR></script>