我的方法是:利用子层与父层的关系解决,具体细节请看下面的代码:
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)html
head
titleNew Page 1/title
/head
body
div
table border="0" width="100%" bgcolor="#00FF00" height="100%" cellspacing="0" cellpadding="0"
tr
td width="100%" height="13"
div
aaaa
/div
div
bbbb
/div
/td
/tr
/table
/div
script language="javascript"
!--
var a
ie4=(document.all)?true:false
if(ie4) block=blockdiv.style
a=screen.width
if (a=="1024")
{
alert(block.left);
block.left=112;
}
if (a=="800")
{ alert(block.left);
block.left=0;
}
--
/script
/body
/html
3.至于框架,我有一个笨方法,是利用内联帧IFRAME/IFRAME把框架的索引页放在里面在外面放一个合适的table,具体细节请看下面的代码:
htmlhead
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
meta name="GENERATOR" content="Microsoft FrontPage 4.0"
meta name="ProgId" content="FrontPage.Editor.Document"
titleNew Page 2/title
/head
body
div align="center"
center
table border="0" width="780" height="600" cellspacing="0" cellpadding="0"
tr
td width="100%"
p align="center"
IFRAME src="你的框架页.htm" width="780" height="600" /IFRAME
/td
/tr
/table
/center
/div
/body
/html