index页面有背景色,为了让iframe中的页面继承index的背景色,需要设置iframe中的页面背景透明。
给iframe添加: allowTransparency="true"
<IFRAME ID="Frame1" SRC="whatever.htm" allowTransparency="true">
给所有iframe嵌套的页面的body标签添加 backgorund:transparent
<body style="background:transparent">
这样就可以了。