我正在尝试将框架集嵌套在iframe中,我无法获得框架集的背景以在IE中显示为透明。 Firefox显示正确。
这是iframe:
<iframe src="frameset.html" name="myframe" width="500" height="500" frameborder="0" allowtransparency="true"></iframe>
这就是 Frameset.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<frameset cols="21%,*" framespacing="0" border="0" frameborder="no">
<frame name="menu" src="test.html" scrolling="no" marginwidth="0" marginheight="0" noresize="noresize" frameborder="no" style="background: transparent" allowtransparency="true">
<frame name="main" src="test.html" marginwidth="0" marginheight="0" noresize="noresize" frameborder="no" style="background: transparent" allowtransparency="true">
</frameset>
</html>
答案 0 :(得分:5)
我最近了解到IE浏览器有一个非标准的iframe代码:allowTransparency =“true”
将它放在你的iframe中并将样式背景设置为透明,你应该没问题。
答案 1 :(得分:3)
仍然没有人有任何答案......除了IE完全打破了浏览器引擎。即使在今天IE8和IE9即将推出。我讨厌IE。我希望所有用户都将它转储到像Firefox或Opera这样的真实浏览器中。