frameset.html:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<!--body元素与frameset元素同级,不能同时存在-->
<frameset rows="70px,*,20px">
<frame src="http://www.baidu.com"/>
<frameset cols="200px,*">
<frame src="left.html"/>
<frame src="http://www.qq.com" name="right"/>
</frameset>
<frame/>
</frameset>
</html> left.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<ul>
<li><a href="http://www.baidu.com" target="right">百度</a></li>
<li><a href="http://www.qq.com" target="right">腾讯</a></li>
<li><a href="http://www.sina.com.cn" target="right">新浪</a></li>
</ul>
</body>
</html>
												

最新文章

  1. 多线程 异步 beginInvoke EndInvoke 使用
  2. 学习日记-从爬虫到接口到APP
  3. How can I determine the URL that a local Git repository was originally cloned from?
  4. Python实现各种排序算法的代码示例总结
  5. centos最小安装 setuptools安装
  6. 选择排序的openMP实现
  7. Android开源项目发现---ImageView 篇(持续更新)
  8. Lunch Time
  9. zoj 3204 Connect them
  10. XSS攻击 CSRF攻击
  11. Laravel5性能优化技巧
  12. BZOJ 4405 [wc2016]挑战NPC 带花树 一般图最大匹配
  13. BZOJ4221 : JOI2012 kangaroo
  14. 003-Nginx 设置Header 获取真实IP
  15. 在centOS使用systemctl配置启动多个tomcat
  16. poj_3579 二分法
  17. Centos系统更改yum源为163
  18. Thinlphp 模版 foreach 嵌套在 另一个循环出现不能在次循环问题。
  19. css-box-shadow
  20. Codeforces Beta Round #3 D. Least Cost Bracket Sequence 优先队列

热门文章

  1. 【python】使用asyncore进行异步通信
  2. 【python】命令行解析工具getopt用法
  3. PostgreSQL日志配置记录
  4. PostgreSQL恢复误操作
  5. Android 应用程序窗体显示状态操作(requestWindowFeature()的应用)
  6. PhotoShop脚本指南
  7. 目标跟踪之相关滤波:CF及后续改进篇
  8. 机器学习算法实现解析——libFM之libFM的训练过程概述
  9. CodeForces - 622F:The Sum of the k-th Powers (拉格朗日插值法求自然数幂和)
  10. Python之functools库