构架的处理问题。具体的可以用里面的frame结构来实现!其实如果是在jsp里面可以直接通过页面include来实现处理的!

解决方案 »

  1.   

    不知道你是否是要这样的效果?
    <frameset rows="64,73%,*">
      <frame name="top" scrolling="no" src="head.html">
      <frame name="middle" target="bottom">
      <frame name="bottom" src="trail.html">
      <noframes>
      <body>  <p>此网页使用了框架,但您的浏览器不支持框架。</p>  </body>
      </noframes>
    </frameset>
      

  2.   

    在jsp中建议采用tiles技术,当然也可以采用template摸版形式的,在纯粹的html中可以采用framset框架或者是iframe嵌入网页的!
      

  3.   

    可以用taglib,将head.html和trail.html的头分别定义成一个tag就ok了!