Blogger Information
Blog 32
fans 2
comment 2
visits 23323
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
12月19作业
暴风战斧
Original
638 people have browsed it

表单文档手抄



少于100字不让提交,粘点代码凑字数
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>内联框架</title>
  6. </head>
  7. <body>
  8. <!--HTML内联框架元素(<iframe>)-->
  9. <!--将另一个HTML页面嵌入到当前页面中,而不是窗口打开另一个网页,类似画中画-->
  10. <!--在当前页面加载一张地图,以百度地图为例,工具-分享,把url值赋值给src-->
  11. <iframe src="https://j.map.baidu.com/ef/_6" frameborder="0" width="500" height="400"></iframe>
  12. <!--内联框架中的内容不会被当做当前页面内容,当然也不会被搜索引擎抓取,会对seo有影响-->
  13. <!--所以,不适合写前端数据展示页面,但非常适合写管理后台页面-->
  14. <!--下面写一个后台小案例-->
  15. <hr>
  16. <ul style="float:left;margin-right:15px;">
  17. <li><a href="demo6.html" target="content">商品列表</a></li>
  18. <li><a href="demo7.html" target="content">添加用户</a></li>
  19. <li><a href="demo4.html" target="content">系统设置</a></li>
  20. </ul>
  21. <!--srcdoc代替src,可以在属性值中直接写html代码,实现后台首页的功能-->
  22. <!--name属性非常重要,它是链接到该框架页面的入口-->
  23. <iframe srcdoc="<h2>欢迎使用管理后台</h2>" frameborder="1" name="content" width="530" height="450"></iframe>
  24. </body>
  25. </html>
Correcting teacher:天蓬老师天蓬老师

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