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

  • 相关阅读:
    求概率 Bag of mice CodeForces
    HDU 3853 LOOPS(概率DP)
    HDU 4405 Aeroplane chess (概率DP & 期望)
    求期望 ZOJ 3329 One Person Game
    poj 3774 Scout YYF I (矩阵优化的概率DP)
    codeforces 600D Area of Two Circles' Intersection
    codeforces 600A Extract Numbers
    codeforces 600C Make Palindrome
    POJ
    POJ
  • 原文地址:https://www.cnblogs.com/9999w/p/4380091.html
Copyright © 2011-2022 走看看