<target="right">
right是你的右边的窗体的名字

解决方案 »

  1.   

    target是打开一个新的窗口啊。我需要的是在本页面内的右边窗口中转为提交到的窗口。谢谢!!
      

  2.   

    <form name=".." action="...jsp" target="右边窗口的名称" method="post">
      

  3.   

    是的。你的target没有设定好啊!
      

  4.   

    <form name="form1" method="post" action="http://localhost:8080/TIKU/2/timu.jsp" target="right.htm">这样写有错吗?为什么是新窗口中打开呀?
      

  5.   

    这是因为新窗口调用了另一个页面,你可以用javascript来实现,
    function loadTable(file){
    mainTable.style.display="none";
    document.frames["hiddenframe"].location.replace(file);
    childTable.style.display="block";
    };
    在页面重用
    <font color=#339966 style="CURSOR: hand" onclick=loadTable("table.jsp")>表一</font>)实现