有个主页面frame_a.html 包含两个页面frame_b.html 和frame_c.html 例如:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<frameset rows="55,*" cols="*" frameborder="no" border="0" framespacing="2">
  <frame src="frame_b.html" name="bFrame" scrolling="No" noresize="noresize" id="bFrame" title="bFrame" />
    <frame src="frame_c" name="cFrame" id="cFrame" title="cFrame" />
  </frameset>
</frameset><noframes><body>
</body>
</noframes></html>当主页面的窗口变小时,总是会把frame_b.html和frame_c.html的一些内容给挤掉
应该怎么去控制对应的frame?