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>
    分块

  • 相关阅读:
    linux C(hello world)最大公约数和最小公倍数
    linux C(undefined reference to `sqrt')
    linux C(hello world)程序调试
    linux C(hello world)
    Google Map 符号
    Google Map 学习过程中的代码
    Google Map 形状显示
    创建 StyledMapType 地图样式
    地图类型
    使用Visual Studio code
  • 原文地址:https://www.cnblogs.com/9999w/p/4380091.html
Copyright © 2011-2022 走看看