zoukankan      html  css  js  c++  java
  • html-----011--子窗体iframe

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <iframe src="22.html" width="200" height="200"></iframe>
    
    <iframe src="11.html" width="200" height="200"></iframe>
    
    </body>
    
    </html>
    View Code

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <iframe src="22.html" width="200" height="200"></iframe>
    
    <iframe src="11.html" width="200" height="200" frameborder="0"></iframe>
    <br />
    <iframe src="11.html" name="iframe_a"></iframe>
    <p><a href="http://www.w3school.com.cn" target="iframe_a">
    W3School.com.cn</a></p>
    <br />
    <iframe src="11.html" name="iframe_b"></iframe>
    <p><a href="http://www.w3school.com.cn" target="iframe_b">
    W3School.com.cn</a></p>
    <!--
    frameborder 属性规定是否显示 iframe 周围的边框。
    设置属性值为 "0" 就可以移除边框:-->
    
    </body>
    
    </html>
    分块

  • 相关阅读:
    Python基础知识篇
    Django框架
    Django REST Framework框架
    NoSQL
    MySQL恩恩怨怨
    Python奇技淫巧
    一文搞定Flask
    数据结构与算法(Python)
    学习数据分析
    项目杂项
  • 原文地址:https://www.cnblogs.com/9999w/p/4380091.html
Copyright © 2011-2022 走看看