<frameset cols="200,200, *">
 <frame name=left   src=t.htm>
 <frame name=center src=tt.htm>
 <frame name=right  src=ttt.htm onload="window.right.document.body.focus()">
</frameset>

解决方案 »

  1.   

    不行,我按下tab键,跑到地址栏去了
    <frameset framespacing="0" border="0" cols="150,*" frameborder="0">
      <frame name="left" scrolling="no" noresize target="rtop" src="lift.htm">
      <frameset rows="17%,*">
        <frame name="rtop" target="rbottom" src="top.htm">
        <frame name="rbottom" src="right.htm" target="_self" >
      </frameset>
      <noframes>
      <body>  <p>此网页使用了框架,但您的浏览器不支持框架。</p>  </body>
      </noframes>
    </frameset>
    我在<frame name="rbottom" src="right.htm" target="_self" >
    中载入不同的页面,如何使我在rbottom中载入的web页的keydown事件生效
      

  2.   

    加上onblur="window.right.document.body.focus()"