zoukankan      html  css  js  c++  java
  • iframe

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>7.26iframe上课</title>
    </head>
    iframe标签:把一个网页嵌入到当前页面内。
    
    <body>
    <table border="1" cellspacing="0" cellpadding="1">
            <tr height="500px">
                    <td width="200px">
                        <a href="https://www.baidu.com/" target="abc">跳转百度</a>
                        <a href="表单form提交等.html" target="abc">跳转我的页面</a>
                    </td>
                    <td width="500px">
                        <iframe src=""  name="abc" frameborder="0" width="400px" height="400px"></iframe>
                    </td>
            </tr>
    </table>
    </body>
    </html>
    View Code

    可传递name给iframe

    <iframe src="" name=""></iframe>

    音频 视频标签:video audio
    autoplay:加载完自动播放
    controls:显示播放按钮
    loop:循环播放
    <video src="" loop controls autoplay="autoplay"></video>
    <audio src="" loop controls autoplay="autoplay"></audio>

  • 相关阅读:
    NYOJ458
    NYOJ67
    NYOJ105
    NYOJ1071
    NYOJ463
    C语言练字用小软件 — Practise_Calligraphy_1.0(ANSI)
    NYOJ276
    NYOJ455
    NYOJ74
    Jzoj4458 密钥破解——Pollard-rho
  • 原文地址:https://www.cnblogs.com/god3064371/p/11254252.html
Copyright © 2011-2022 走看看