Div Resize不适用于Internet Explorer

时间:2015-03-08 06:33:27

标签: javascript jquery html css

我有一个div,我通过简单的css调整大小,在chrome,firefox和其他一些浏览器上精美地调整大小,但它似乎没有在Internet Explorer上做任何事情。我已经把我的代码放在下面看看它,因为我不确定我错过了什么。如果可能的话,我更愿意将解决方案保留在css中,但如果我需要实现其他目的,我愿意接受选项和任何帮助。谢谢。

<!DOCTYPE HTML>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
      <meta http-equiv="Pragma" content="no-cache">
      <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=yes, width=device-width">
      <meta name="HandheldFriendly" content="true">
      <meta name="MobileOptimized" content="width">
      <style type="text/css">
         * { margin: 0; padding: 0; }
         html, body { width: 100%; height: 100%; overflow: hidden; color: #ffffff; background-color: #000000; }
         #banner { width: 100%; height: 100%; border: none; overflow: hidden; float:left; z-index:9; }
         #BodyContainer { position: absolute; top: 150px; left: 0px; bottom: 0px; right: 0px; clear: both; }
         #bottom { width: 100%; height: 100%; border: none; }
         .resizable {
         resize: vertical;
         display: block;
         width: 100%;
         height: 120px;
         border: 2px black;
         overflow: hidden;
         position: relative;
         box-shadow: 1px 1px 1px #33A6A6;
         z-index:9;
         }
      </style>
   </head>
   <body>
      <div></div>
      <div class="resizable">
         <iframe width="100%" height="100%" id="banner" name="BANNER" src="$BASE$/BANNER?$CONFIG$"></iframe>
      </div>
      <div></div>
      <div id="BodyContainer">
         <div></div>
         <iframe width="100%" height="100%" id="bottom" name="BODY" src="$BASE$/BODY?$CONFIG$"></iframe>
      </div>
   </body>
</html>

1 个答案:

答案 0 :(得分:4)

您正在使用CSS调整div的大小,IE中尚不支持resize属性,如果您想在所有浏览器上实现此效果,那么我建议使用jQuery resizable,here is a fiddle演示如何使用它

请注意,这需要jQuery和jQuery UI库。