frameset在IE9里面没有高度了
如题:附上图
和 源代码
- HTML code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title><script LANGUAGE=javascript>function closeme(){ var iWidth=300; //窗口宽度 var iHeight=45;//窗口高度 var iTop=(window.screen.height-iHeight)/2; var iLeft=(window.screen.width-iWidth)/2;}</script></head><frameset rows="90,*,30" cols="*" framespacing="0" frameborder="no" border="0" height="100%"> <frame src="Top.aspx" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" /> <frame src="Center.aspx" name="mainFrame" scrolling="NO" id="mainFrame" /> <frame src="Down.aspx" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" /> </frameset><noframes><body><p>此网页使用了框架,但您的浏览器不支持框架。</p></body></noframes></html>
各位大侠 请给个解决方案
页面只有一截了。。。。
[解决办法]
rows="90px,*,30px"
或者
rows="20%,*,10%" 自己调调比较
[解决办法]
<frameset rows="90,*,30" cols="20%,*" framespacing="0" frameborder="no" border="0" height="100%">
[解决办法]
[解决办法]