frame,iframe,frameset 2015/01/26 | 前端 | Villen | 暂无评论 | 1509 views iframe 是在html页面内嵌入框架 框架内可以连接另一个页面, 如 123456 <html><head></head><body><iframe src="xxx.html"></iframe></body></html> frameset 在一个页面中设置一个或多个框架 不能嵌套在body标签里 1234567 <html><head></head><frameset><frame src=""></frame><frame src=""></frame></frameset></html> frameset 它称为框架标记,是用来告知HTML文件……