A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 傅宇 中级黑马   /  2013-3-8 21:56  /  1201 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. <html>
  2.   <head>
  3.     <title>Demo1.html</title>
  4.        
  5.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  6.     <meta http-equiv="description" content="this is my page">
  7.     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  8.    
  9.     <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  10.   </head>
  11.   <frameset cols="20%,*">
  12.   <frame name="left" />
  13.   <frame name="right" />
  14.   </frameset>
  15.   <body>
  16.     This is my HTML page. <br>
  17.   </body>
  18. </html>
复制代码
这段代码将整个页面分成左右两块,但是body标签里的代码就失效了,如何让body里的信息显示出来?

1 个回复

倒序浏览
frameset标签和body标签是不能同时使用的。官方有说明,http://www.w3school.com.cn/tags/tag_frameset.asp,有了frameset为啥还要用body呢,,
不过如果浏览器不支持frameset,可以在其中嵌套一个<noframes><body>This is my HTML page.</body></noframes>,这时body的内容就会显示了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马