在使用hibernate+struts2时 点击超链接怎么样跳转新页面啊,不关闭原页面

解决方案 »

  1.   

    旧标准:
    <a href="example.html" target="_blank">aaa</a>
    新标准:
    <a href="example.html" rel="external">aaa</a>
      

  2.   

    在使用hibernate+struts2时 点击超链接怎么样跳转新页面啊,不关闭原页面target="_blank"好像不关hibernate+struts2的事
      

  3.   

    我超链接连的不是jsp页面而是提交的action
      

  4.   

    <s:a href="..action"></s:a>
      

  5.   

    struts2 里没有target这个标签
      

  6.   

    在form 中指定target就可以了
      

  7.   

    struts的标签最终不还是要转换成html , 你直接用html 当然可行了 
      

  8.   

    你也可以尝试
    用js
    window.open打开一个新的窗口

    window.showModalDialog打开一个模态对话框然后你再用DWR同样可以实现Action的操作~~