实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html iframe name 实例 - 自学教程(runoops.com)</title> </head> <body> <iframe src="//demo.runoops.com/sources/html/demo_iframe.html" name="iframe_a"> <p>您的浏览器不支持 iframe 标签。</p> </iframe> <a href="//www.runoops.com" target="iframe_a">runoops.com</a> <p><b>注意:</b> 因为连接的 target 属性 匹配了 ifrme 的 name 属性,所以链接点击后将显示在 iframe 中。</p> </body> </html>
运行结果: