问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

用div+css代替iframe

发布网友 发布时间:2022-04-19 05:56

我来回答

6个回答

热心网友 时间:2022-04-19 07:25

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>鼠标点击左侧,右侧显示内容</title>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(function (){
$("#newsTab a").each(function(index){//each变例,每一个a标签
$(this).click(function(){//鼠标滑过a的时候
$(".news").addClass("dis")//给news添加样式dis
$(".news:eq("+index+")").removeClass("dis")//给对应news的index索引值删除dis样式
$("#newsTab a").removeClass("hover")//先删除所有的a的样式hover
$(this).addClass("hover")//给对应的a添加样式hover
})
})
})
</script>
<style type="text/css">
*{padding:0;margin:0;}
li{ list-style-type:none;}
.box{ width:1000px; height:500px; border:1px solid #333; margin:0 auto;}
#newsTab{width:200px; height:500px; border-right:1px solid #333; float:left;}
#newsTab li{ width:200px;}
#newsTab a{ width:200px; height:28px; line-height:28px; text-decoration:none; color:#fff; background:#ccc; border-bottom:1px solid #777; display:inline-block; text-align:center;}
.news{width:799px;height:500px;background:#ccc; float:left}
.dis{display:none;}
#newsTab .hover{background:red;font-weight:600;}
</style>
</head>
<body>
<div class="box">
<ul id="newsTab">
<li><a href="#" class="hover">国内新闻</a></li>
<li><a href="#">娱乐新闻</a></li>
<li><a href="#">体育新闻</a></li>
</ul>
<ul class="news" >
<li>国内昨天下公交车的时候,捡到5块,回到家发现公交卡丢(刚充了100)</li>
</ul>
<ul class="news dis">
<li>早上被雨淋了</li>
</ul>
<ul class="news dis">
<li>北京3-1领先广东队</li>
</ul>
</div>
</body>
</html>

热心网友 时间:2022-04-19 08:43

我理解了一下,不知道对不对:左侧菜单不刷新,右侧刷新,减少左侧菜单请求数量。
$("#menu a").click(function(){ //点击左侧菜单
$("#main").load('inner.html'); //刷新右侧main区域
});
jquery的load方法可以load一个页面到div里。应该可以满足你的要求吧。追问请问,那如果我还要传参呢?就是说点击左侧,右侧刷新的页面需要左侧数据为查询条件,呵呵好像有点苛刻了!

热心网友 时间:2022-04-19 10:18

你说的是局部刷新的话,用Ajax就可以了,稍微学习一下js就会做了,显示方面都是用html+css布局,需要局部刷新的内容也是一样,最后用js来控制下刷新就可以了追问也可以说是局部刷新,但是刷新的内容是一个页面,绝不是用js写的字符串,往页面上打印那种,

热心网友 时间:2022-04-19 12:09

frameset 已经过时, 使用frameset会带来很多问题,比如session丢失等.
所以提倡用iframe。下面是一个不错的网站布局的。

1. Main.htm页面代码

<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>后台管理系统</title>
<link
href="Styles/frame.css"
rel="Stylesheet"
type="text/css"
/>
<link
href="Styles/menu.css"
rel="Stylesheet"
type="text/css"
/>
<style
type="text/css">
body
{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}
</style>
<script
language="javascript"
type="text/javascript">
function SetWinHeight(obj)
{
var win=obj;
if (document.getElementByIdx_x)
{
if (win && !window.opera)
{
if (win.contentDocument &&
win.contentDocument.body.offsetHeight)
win.height = win.contentDocument.body.offsetHeight;
else if(win.Document &&
win.Document.body.scrollHeight)
win.height = win.Document.body.scrollHeight;
}
}
}
</script>
</head>
<body>
<form id="form1"
runat="server">
<div
id="framecontentLeft">
<div
class="menu">
<ul>
<li><a
href="CategoryList.htm"
target="content">产品类别</a></li>
<li><a
href="ProctList.htm"
target="content">产品明细</a></li>
</ul>
</div>
</div>
<div
id="framecontentTop">
<div style="text-align:
center;">
<div style="float:
right;">
<a
href="Default.aspx?act=logout">退出</a>
</div>
<h1>
后台管理系统
</h1>
</div>
</div>
<div
id="maincontent">
<iframe
id="content"
name="content"
onload="Javascript:SetWinHeight(this)"
frameborder="0"
scrolling="no"
width="100%"></iframe>
</div>
</form>
</body>
</html>

2. frame.css样式代码

#framecontentTop
{
position: absolute;
top: 0;
left: 0;
height: 100px;
width: 100%;
overflow: hidden;
vertical-align: middle;
background-color: #D2E6FA;
}
#framecontentLeft
{
position: fixed;
top: 100px;
left: 0;
height: 100%;
width: 150px;
overflow: hidden;
vertical-align: top;
background-color: #D2E6FA;
}
#maincontent
{
position: fixed;
left: 150px;
top: 100px;
right: 0;
bottom: 0;
overflow: auto;
background: #fff;
border-top: solid 2px #70cbea;
border-left: solid 2px #70cbea;
}
* html body
{
padding: 100px 0 0 150px;
}
* html #maincontent
{
height: 100%;
width: 100%;
}
* html #framecontentTop
{
width: 100%;
}

3. menu.css样式代码

.menus
{
}
.menu ul
{
padding: 0;
margin: 0;
list-style-type: none;
width: 100%;
}
.menu li
{
position: relative;
background: #d4d8bd;
height: 26px;
}
.menu a, .menu a:visited
{
display: block;
text-decoration: none;
height: 25px;
line-height: 25px;
width: 149px;
color: #000;
text-indent: 5px;
border: 1px solid #fff;
border-width: 0 1px 1px 0;
}
.menu a:hover
{
color: #fff;
background: #949e7c;
}

4. CategoryList.htm页面代码(根据自己需要输入)

<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>类别列表</title>
</head>
<body>
<div>
<table>
<tr>
<td>类别</td>
<td>类别</td>
<td>类别</td>
<tr>
<tr>
<td>类别</td>
<td>类别</td>
<td>类别</td>
<tr>
<tr>
<td>类别</td>
<td>类别</td>
<td>类别</td>
<tr>
</table>
</div>
</body>
</html>

5. ProctList.htm页面代码(根据自己需要输入):

<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>类别列表</title>
</head>
<body>
<div>
<table
style="height:500px;">
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
</table>
<table
style="height:500px;">
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
<tr>
<td>产品</td>
<td>产品</td>
<td>产品</td>
<tr>
</table>
</div>
</body>
</html>

上面将页面元素拆分成html和css,运行的效果如图:

热心网友 时间:2022-04-19 14:17

不能代替。
第一,DIV+CSS 虽然功能非常强大,布局也非常灵活,但是iframe 有其优势。
第二,需要制作后台框架的时候,iframe 相对来说会是更好的选择。
第三,可访问:http://www.w3school.com.cn/html/html_iframe.asp 进行更多学习。

热心网友 时间:2022-04-19 16:42

可以通过添加div层的方式,设置z-index属性,就不需要使用iframe调用新页面了。
一个页面就是很多个层组合成的,一开始是display:none;隐藏状态,通过某个事件,使其显示display:block;即可。参数传递也更方便。
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
怎样喷香水留香更持久?有哪些技巧? 有哪些方法让香水持久度更长一些? 怎样喷香水比较持久? 如何喷香水能使味道更持久? 败北是什么梗 湖南第一师范学院生活开销 赣州博沃新能源科技有限公司怎么样? 在湖南第一师范学院读书需要支出哪些费用 江西信丰恒隆麦饭石酒业有限公司公司荣誉 信丰县资源特点 公共事业管理专业能报考什么公务员?能报考公安类的吗? 公共事业管理考什么公务员 公共事业管理专业可以报考什么公务员职位? 公共事业管理可以考什么事业单位? 下载win7系统怎么安装 win7系统的下载和安装步骤 i5 3210m的笔记本cpu 核显 hdmi接口单独接显示器 最大支持多少分辨率 不玩游戏 只办公 显卡有压力么 求问这台笔记本的配置能否支持2k显示屏,有HDMI接口,双显卡( Nvidia GeForce GT 650M和Intel HD 4000) HD4000只有VGA接口,显卡驱动是不是不能驱动 在高清硬解方面HD4000系列比HD3000系列显卡有哪些优势? 请问i3 3225的核显HD4000 支持2560X1440的分辨率吗?(主板有HDMI和DVI接口) 有没有笔记本hd4000 外接hdmi屏幕能用的 显卡雷风HD4000,用HDMI接松下42u20c电视,电视机分辨率设置成1920*1080时,看高清有横向波纹,720时,没 ATI显卡HD3000和HD4000还有HD5000系列6000系列的高清视频解码方面有什么区别? dell xps 13 hd4000的集显,外接一个1920*1080的显示器用起来会卡吗? HD4000和710m卡笔记本想外接2K屏幕,为什么最高分辨率只有1080p?线是hdmi1.4 hdgraphics4000这显卡能同时显示两个信号吗hdmi和vga Intel hd graphics 4000安装驱动后只能通过HDMI外显,笔记本显示器黑屏? intel 的hd4000的核显能输出hdmi接口的显示器吗 过膝袜什么色配什么衣服好看? 现在电动舵机带宽能达到什么水平 什么叫窄频舵机 苏联AS-5空地导弹有哪些结构特点? 苏联AS-5空地导弹有什么特点? 反潜鱼雷的典型武器 将军笑对人生多少钱一条? 急!!!急!!!急!!!标题要长!!! 去泰国旅游买什么东西最好 现在在北京买套房子要多少钱? 请问我女朋友为什么总爱跟我接吻 女生为什么这么喜欢接吻? 为什么女生都喜欢舌吻 女生也会喜欢接吻吗? 为什么有的女生喜欢跟女的接吻? 谁玩绝地求生的QQ号借我玩一天 人在边缘 歌词 两代美男子,陆毅pk黎明,谁更帅? 用吃鸡ID怎么查到QQ或 当年黎明成为天王备受质疑,张国荣出声力挺,让整个娱乐圈噤声,说的什么? 你们觉得哪一部电影是黎明的颜值巅峰?