博客列表 >iframe实现后台管理

iframe实现后台管理

P粉036614676
P粉036614676原创
2022年10月22日 07:39:50510浏览

1.iframe

  1. <!DOCTYPE html>
  2. <html lang="en">
  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. @import url('./static/css/admin.css');
  10. </style>
  11. </head>
  12. <body>
  13. <!-- <figure>
  14. <figcaption>导航</figcaption>
  15. <div class="first">
  16. <a href="https://j.map.baidu.com/d0/Bhdu" target="city">合肥市</a>
  17. <a href="https://j.map.baidu.com/45/g" target="city">上海市</a>
  18. <a href="https://j.map.baidu.com/fe/J" target="city">杭州市</a>
  19. </div>
  20. <div class="seconde">
  21. <iframe src="./static/images/girl.jpg" frameborder="0" name="city" width="1000px" height="1000px"></iframe>
  22. </div>
  23. </figure> -->
  24. <header>
  25. <h1>网站后台管理系统</h1>
  26. <section>
  27. <em>admin</em>
  28. <button onclick="location.href='logout.php'">退出</button>
  29. </section>
  30. </header>
  31. <nav>
  32. <a href="../1017/demo1.html" target="content">元素属性</a>
  33. <a href="../1017/demo2.html" target="content">布局元素</a>
  34. <a href="../1017/demo3.html" target="content">图文列表</a>
  35. <a href="../1017/demo4.html" target="content">图片链接与列表</a>
  36. <a href="../1017/demo5.html" target="content">细说表格</a>
  37. <a href="../1018/demo1.html" target="content">表单元素与控件</a>
  38. <a href="demo1.html" target="content">音频与视频元素</a>
  39. </nav>
  40. <iframe src="" name="content"></iframe>
  41. </body>
  42. </html>

a的target和iframe的name一一对应

2.选择器

  1. <!DOCTYPE html>
  2. <html lang="en">
  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. p{
  10. background-color: red;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <video src="./static/images/test.mp4" controls autoplay muted loop poster="static/images/girl.jpg"></video>
  16. <audio src="" controls autoplay muted></audio>
  17. <p>aaa</p>
  18. <p>bbb</p>
  19. <p>ccc</p>
  20. </body>
  21. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议