- 注册时间
- 2015-8-26
- 最后登录
- 2022-10-20
- 阅读权限
- 10
- 积分
- 406
- 精华
- 0
- 帖子
- 93
 
|
<div id="tt" class="mini-tabs" style="width:795px;height:400px;">
<div id="tab-1" title="1" style="overflow:hidden">
<iframe frameborder="0" src="www.baidu.com" style="width:793px;height:370px;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></iframe>
</div>
<div id="tab-2" title="2" style="overflow:hidden" >
<iframe frameborder="0" src="" style="width:793px;height:370px;"></iframe>
</div>
<div id="tab-3" title="3" style="overflow:hidden" >
<iframe frameborder="0" src="" style="width:793px;height:370px;"></iframe>
</div>
<div id="tab-4" title="4" style="overflow:hidden">
<iframe frameborder="0" src="" style="width:793px;height:370px;"></iframe>
</div>
</div>
<script type="text/javascript">
$(function(){
var id = ${id};
if(id=='1'){
$('#tt').tabs("select",2);
}else if(id=='2'){
$('#tt').tabs("select",3);
}else{
$('#tt').tabs("select",0);
}
});
</script>
|
|