Correction status:Uncorrected
Teacher's comments:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>网站后台管理</title> </head> <body> <h2>网站后台</h2> <ul style="float: left"> <li><a href="demo3.html" target="main">文章管理</a></li> <li><a href="demo4.html"target="main">产品管理</a></li> <li><a href="demo5.html"target="main">用户中心</a></li> <li><a href="demo2.html"target="main">系统设置</a></li> </ul> <iframe src="" frameborder="0" width="800" height="500" name="main" style="float: left"></iframe> </body> </html>
点击 "运行实例" 按钮查看在线实例
简单注册页面学习总结。
1. target的值需要和 iframe 的 name值一致,这样点击就可以对应的在框架里打开。
2.内联框架使用iframe实现的。