html 5(三)之框架标签

发布时间 2023-12-14 20:40:59作者: by1314

iframe 嵌入

嵌入广告
<iframe src="网址" height="" width="" frameborder=""></iframe>

与超链接 target 关联

 <a href="httos://www.toutiao.com" target="container">头条</a>
 <iframe name="container" frameborder="0" width="900" height="300"></iframe>

与 targ表单的 target 关联

    <form action="https://so.toutiao.com/search" target="container">
        <input type="text" name="keyword"><br>
        <button name="submit">提交</button>
    </form>
    <iframe name="container" frameborder="0" width="900" height="300"></iframe>