Javaweb iframe
<!DOCTYPE html> <html lang="zh_CN"> <head> <meta charset="UTF-8"> <title>图图2</title> </head> <body> <!--iframe(内嵌窗口) 可以在当前页面开辟一个小区域 显示一个单独的页面 iframe 和a标签组合使用的方法 1.在iframe标签中使用name属性定义一个名称 2.在a标签的target属性上设置iframe的name的属性值 --> <iframe name="fz" src="Table.html" width="520" height="520" frameborder="2"></iframe> <ul> <li><a href="hello.html" target="fz"> 表格1</a></li> <li><a href="Table.html" target="fz">表格2</a></li> </ul> </body> </html>