Blogger Information
Blog 5
fans 0
comment 0
visits 2353
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
20200207学习笔记2(内联iframe)
V
Original
467 people have browsed it

内联

1.标记标签:<iframe>…</iframe>
2.src可以连接百度地图,通过地图的工具箱里分享地址

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>iframe</title>
  6. </head>
  7. <body>
  8. <iframe src="demo2.html" frameborder="0" width="500" height="300" name="cart"></iframe>
  9. <hr>
  10. <iframe src="https://j.map.baidu.com/68/9Yv" frameborder="0" width="500" height="300"></iframe>
  11. </body>
  12. </html>

Demo后台管理页面

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <ul style="float:left;margin-right: 15px;">
  9. <li><a href="demo1.html" target="content">商品列表</a></li>
  10. <li><a href="demo2.html" target="content">添加用户</a></li>
  11. <li><a href="demo3.html" target="content">系统设置</a></li>
  12. </ul>
  13. <iframe srcdoc="<h2 style='color:green'>网站管理后台</h2>" frameborder="2" name="content" width="450" height="200"></iframe>
  14. </body>
  15. </html>

上述demo里,注意第13行 srcdoc 属性的使用方法。

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