假设左边的框架叫:leftFrame,右边的叫rightFrame,他们必须在同一个frameset下
这样,在左边的jsp页中:<form name="thisform" method="post" action="aa.jsp" target="rightFrame">
就可以了!

解决方案 »

  1.   

    <a href="aaa.htm" target="rightFrame">菜单一</a>
    <a href="bbb.htm" target="rightFrame">菜单二</a>
      

  2.   

    index.htm
    ---------
    <frameset cols="30%,*">
    <frame src="left.htm" name="leftFrame">
    <frame src="right.htm" name="rightFrame">
    </frameset>
    left.htm
    ---------
    <form target="rightFrame">
      <select name="site">
        <option value="sina">sina
        <option value="sohu">sohu
        <option value="china">china
      </select>
      <input type="submit" value="Go..." onclick='this.form.action="http://www."+document.all.site.value+".com";'>
    </form>