信不信由你,100% 宽度功能在 ie8 的模态对话框中似乎无法正常工作。
查看这个简单的示例代码。
var retVal = window.showModalDialog(URL,window.self, "dialogWidth=600px;dialogHeight=305px;scroll=yes;status=yes;caption=yes;titlebar=yes;menubar=yes;toolbar=yes;help=yes;resizable=yes;center=yes;");
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
</head>
<body>
<div id="temp" style="width: 100%; height: 500px; border:1px solid red;">
</div>
</body>
</html>
运行此代码,然后调整弹出窗口的大小。请注意,红色 div 保持原始大小,而不是 100%。我注意到 ff 具有正确的行为。
有没有绕口令?
格雷