<!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>