Blogger Information
Blog 10
fans 0
comment 1
visits 3169
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
一个简单的后台布局
P粉753609736
Original
316 people have browsed it
  1. <link rel="stylesheet" href="引入的css" />

2.<body>里面的<header>做顶部。

  1. <header>
  2. <h1>后台管理系统 <small>(V1.1)</small></h1>
  3. <section>
  4. <em>admin</em>
  5. <button onclick="logout()">退出</button>
  6. </section>
  7. </header>

3.<body>里面的<nav>做侧边栏。

  1. <nav>
  2. <a href="html文件路径" target="content">表格元素</a>

4.<body>里面的<iframe>做主体。

name绑定左侧<nav>下面的target

  1. <iframe src="inc/default.html" frameborder="0" name="content"></iframe>

5.是否退出

  1. <script>
  2. function logout() {
  3. return confirm('是否退出?') ? alert('退出成功') : false
  4. }
  5. </script>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:一个作业写一篇文章就可以了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
2 comments
P粉454177820 2023-01-18 15:33:52
nav标签只是一个容器,是a.target绑定iframe.name
1 floor
五星好评!
P粉753609736 2023-01-18 20:00:42
Author's latest blog post