日期:2014-05-17  浏览次数:20832 次

struts2 result的jsp页面如何规定width和height?
struts2 result的jsp页面如何规定width和height?
比如我的struts.xml中定义了下面这段


<action name="xxx" class="xxxAction">
      <result name="input">/index.jsp</result>
      <result name="error">/error.jsp</result> 
      <result name="success">/message.jsp</result> 
</action>

当xxxAction return success后,IE浏览器弹出了message.jsp页面
我如何设定弹出的IE页面的widht和height?还有像toolbar=no这样的设置?
谢谢!
------最佳解决方案--------------------
没招,等高手..
------其他解决方案--------------------
在message.jsp页面中设置:
<table> 
<tr> 
<td> 
<iframe   border= "0 "   src= " "   width= "800 "   height= "800 "   marginwidth= "0 "   marginheight= "0 "   scrolling= "no "> </iframe> 
</td> 
</tr> 
</table> 

------其他解决方案--------------------
在你要显示的页面(如:error.jsp)中加入javascript脚本,在脚本中用open()方法打开一个新的页面(如:error1.jsp),同时将error.jsp页面通过javascript脚本关闭。通过open()方法打开的error1.jsp就是你想要显示的页面效果了 !!!(width,height,toolbar=no)都在open()方法中设定!!
------其他解决方案--------------------
引用:
在你要显示的页面(如:error.jsp)中加入javascript脚本,在脚本中用open()方法打开一个新的页面(如:error1.jsp),同时将error.jsp页面通过javascript脚本关闭。通过open()方法打开的error1.jsp就是你想要显示的页面效果了 !!!(width,height,toolbar=no)都在open()方法中设定!!


这个方法可以,但是有直接的吗?
------其他解决方案--------------------
这个好像不是struts2的事吧.! 找js去
------其他解决方案--------------------
showModalDialog方法

例题
window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");   

------其他解决方案--------------------

<action name="xxx" class="xxxAction">
      <result name="input">/index.jsp</result>
      <result name="error">/error.jsp</result> 
      <result name="success">/message.jsp</result>     
</action>

改为

<action name="xxx" class="xxxAction">
      <result name="input">/index.jsp</result>
      <result name="error">/error.jsp</result> 
      <result name="success">/message.jsp?width=12;amsphigth=12</result>     
</action>

这样不就行 啊??
------其他解决方案--------------------
LS的方法不行!

window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");   

我平时也是这么做的!


------其他解决方案--------------------
这是个html的问题,跟什么struts,java,jsp都没有关系。
------其他解决方案--------------------