目前我正在使用iframe为一个模块创建表格导航。
在模块主页面上我有两个标签,在其中一个框架内,我在一个选择框后面有另外两个标签。第3和第4个选项卡的内部框架内容将包含大部分内容,这将使框架溢出。那么..我想要的是不是从第一个/第二个选项卡(或者不是第一个框架创建)而是从第三个和第四个选项卡启动滚动条。
1st Tab| 2nd Tab
(SelectBox)
3rdTab | 4th Tab
(The rest of content)
下面是一些代码示例(第一帧):
<table>
<tr>
// create tab with td
</tr>
<tr>
// create tab with td
</tr>
</table>
<div id="newstabs" class="bg2" style="border-left:0px; border-right:0px; border-bottom:0px;">
<iframe src ="Download.asp" width="158" height="274" id="download3" frameborder="0"></iframe>
</div>
<div id="newstabs0" style="position:absolute; top:0; left:0; visibility: hidden; margin: 10px;">
<iframe src ="Download.asp" width="158" height="274" id="download2" frameborder="0"></iframe>
</div>
<div id="newstabs1" style="position:absolute; top:0; left:0; visibility: hidden; margin: 10px;">
<iframe src ="Upload.asp" width="158" height="274" id="upload" frameborder="0"></iframe>
</div>
Download.asp
具有类似的iframe设置,这是我希望滚动工作的地方,而不是主页。
我该怎么做?在主页面的iframs中设置scrolling="no"
也会禁用Download.asp
页面上的滚动。