第005讲 6 、php frameset 笔记

来源:互联网 发布:sql注入简单举例 编辑:程序博客网 时间:2024/06/07 00:17

php frameset 笔记

image

frameset 主体

注意 主体中不能只能这么写不能包含body之类的玩意,否则刷新界面什么都出不来,那就是大写的尴尬了

<frameset cols="30%,*"><frame src="left.html"/><frame src="right.html"></frameset>

左侧视图

<!doctype html><html lang="en"> <head>  <meta charset="UTF-8">  <meta name="Generator" content="EditPlus®">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content="">  <title>Document</title> </head> <body>  <a href="right1.html" target="frameright">周杰伦</a><br/>    <a href="other.html" target="frameright">other</a> </body></html>

右侧视图

<!doctype html><html lang="en"> <head>  <meta charset="UTF-8">  <meta name="Generator" content="EditPlus®">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content="">  <title>Document</title> </head> <body>  周杰伦歌词大全 </body></html>
0 0
原创粉丝点击