下拉选单 被 frame 框架 挡住 了怎么解决
index<html><head><basehref="<%=basePath%>"><title>rows-cols框架</title></head><frameset...
index
<html>
<head>
<base href="<%=basePath%>">
<title>rows-cols框架</title>
</head>
<frameset rows="10%,*" frameboder="1">
<frame src="kuangjia/topframe.jsp" name="topframe" scrolling="no" noresize="noresize">
<frameset cols="20%,*">
<frame src="kuangjia/left.jsp" scrolling="no" noresize="noresize" name="leftframe">
<frame src="kuangjia/right1.jsp" name="rightframe">
</frameset>
</frameset>
<body>
无内容
</body>
</html>
left.jsp 就是调用的一个左下拉选单 被右边的 <frame src="kuangjia/right1.jsp" name="rightframe"> 挡住了,怎么解决呢 展开
<html>
<head>
<base href="<%=basePath%>">
<title>rows-cols框架</title>
</head>
<frameset rows="10%,*" frameboder="1">
<frame src="kuangjia/topframe.jsp" name="topframe" scrolling="no" noresize="noresize">
<frameset cols="20%,*">
<frame src="kuangjia/left.jsp" scrolling="no" noresize="noresize" name="leftframe">
<frame src="kuangjia/right1.jsp" name="rightframe">
</frameset>
</frameset>
<body>
无内容
</body>
</html>
left.jsp 就是调用的一个左下拉选单 被右边的 <frame src="kuangjia/right1.jsp" name="rightframe"> 挡住了,怎么解决呢 展开
3个回答
展开全部
left.jsp中的下拉框那儿加个iframe控制一下
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
展开全部
left.jsp中的下拉框那儿加个iframe控制一下
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
left.jsp中的下拉框那儿加个iframe控制一下
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
比如
<style>
.left-con-div {
display: bolck;
position: relative;
top: 10px;
left: 5px;
z-index: 999; <!--这里设置大一点-->
width: 100px;
}
.left-assist-iframe {
border: none;
width: 100%;
height: 100px; <!--显示高度控制-->
}
.left-inner-div {
display: block;
position: relative;
top: -100px; <!--与上面一致,不过是负的-->
z-index: 9;
width: 100%;
height: 100px;
}
</style>
<div id="container-div" class="left-con-div">
<iframe frameborder="0" marginheight="0" marginwidth="0" class="left-assist-iframe"></iframe>
<div id="inner-div" class="left-inner-div">
<select>...</select>
</div>
</div>
div和下拉框的样式你自己可以调整,手打上来的代码未必直接可以用,给你一个思路,你自己测试一下,这种方法对flash遮住其他控件的问题也能进行控制
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询