gpt4 book ai didi

javascript - Div 调整大小不适用于 Internet Explorer

转载 作者:行者123 更新时间:2023-11-30 10:06:21 25 4
gpt4 key购买 nike

我有一个 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>

最佳答案

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

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

关于javascript - Div 调整大小不适用于 Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28923785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com