|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
請教關於框架網頁和層的問題
假使有一個上下結構的框架網頁a.html:
<html>
<head>
<title>a</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<frameset rows="90,*" framespacing="0" frameborder="0" border="0" style="toolbar:no;menubar:no;">
<frame name="topFrame" frameborder="0" scrolling="no" noresize marginwidth="0" marginheight="0" src="b.html" >
<frame name="mainFrame" src="c.html">
</frameset>
<noframes><body bgcolor="#FFFFFF" text="#000000">
</body></noframes>
</html>
如果b.html裡面有一個層的高度超過120PX,如何使這個層同時顯示在b.html和c.html兩個網頁上,也就是說b.html網頁中的層能否懸掛(視覺上)在c.html上,請高手指點! |
div 不可以
要麼使用 <iframe allowtransparency>
要麼 createPopup 窗口
搜索老貼有 |
|