iframe
Posted god3064371
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
可传递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>
以上是关于iframe的主要内容,如果未能解决你的问题,请参考以下文章