Blogger Information
Blog 12
fans 0
comment 2
visits 6281
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
iframed的一个后台小案例
白鸽
Original
384 people have browsed it

iframed的一个后台小案例

案例

default.html

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>管理后台</title>
  8. <style>
  9. body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. #top{
  14. background:#FFC;
  15. margin: 0;
  16. padding: 0;
  17. width: 100%;
  18. height: 50px;
  19. border-bottom: 1px solid #003300;
  20. line-height: 50px;
  21. font: 1em sans-serif;
  22. }
  23. .h1{
  24. margin: 0;
  25. padding: 0;
  26. float: left;
  27. line-height: 50px;
  28. }
  29. .topright{
  30. line-height: 50px;
  31. float:right;
  32. }
  33. .topright a{
  34. color: darkred;
  35. }
  36. #left{
  37. background-color: darkseagreen;
  38. float: left;
  39. width: 200px;
  40. height: 100%;
  41. }
  42. #left ul{
  43. list-style-type: none;
  44. }
  45. #left li{
  46. height: 30px;
  47. line-height: 30px;;
  48. }
  49. #right{
  50. float: left;
  51. width: auto;
  52. height: 100%;
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div id="top"><h1 class="h1">网站内容管理系统后台</h1>
  58. <div class="topright">管理员:admin&nbsp;&nbsp;&nbsp;&nbsp;[<a href="#">安全退出]</a></div>
  59. </div>
  60. <div id="left">
  61. <ul>
  62. <li><a href="main.html" target="main">管理首页</a></li>
  63. <li>菜单列表</li>
  64. <li>菜单列表</li>
  65. <li>菜单列表</li>
  66. <li>菜单列表</li>
  67. <li>菜单列表</li>
  68. <li>菜单列表</li>
  69. <li>菜单列表</li>
  70. </ul></div>
  71. <div id="right"><iframe name="main" src="table.html" width="1000" height="800"></iframe></div>
  72. </body>
  73. </html>

main.html

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>管理后台首页</title>
  8. </head>
  9. <body>
  10. <h1>当前进入了管理后台首页</h1>
  11. </body>
  12. </html>
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
0 comments
Author's latest blog post