HTML5不支持frameset一般怎么解决?
baby不要哭泣
baby不要哭泣 2017-03-15 09:11:21
0
2
1495

HTML5不支持frameset一般怎么解决?

baby不要哭泣
baby不要哭泣

全部回覆(2)
数据分析师

HTML5不支援frameset一般怎麼解決? -PHP中文網路問答-HTML5不支援frameset一般怎麼解決? -PHP中文網問答

圍觀一下哦,學習一下。

伊谢尔伦

使用jQuery的onload方法加载页面,不过这种方法跳转多个页面后,点击浏览器上方的后退前进是无效的,不过可以认为的添加一个返回按钮。

一般是这样写的:

$("#main").load("mainIndex.html",function(){ 
 });

对于页面,p+css可以实现frame的效果

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>p+css实现frameset效果</title>
<style type="text/css">
.header{border-bottom:1px solid #ccc;margin-bottom:5px;}
.MainContainer{min-width:960px;max-width:1600px;}
.sidebar{width:180px;float:left;margin-right:-180px;border-right:1px solid #ccc;min-height:500px;padding:5px;}
.main{float:left;margin-left:200px;padding:5px;}
.content{padding:0 10px;}
</style>
</head>
<body>
    <p class="page">
        <p class="header">
            <p id="title">
                <h1>顶部</h1>
            </p>
        </p>
        <p class="MainContainer">
            <p class="sidebar">
            边栏
            </p>
            <p  id="main" class="main">
                内容
            </p>          
        </p>
    </p>
</body>
</html>


熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!