有点时候需要在单击A标签的时候打开一个指定大小的新窗口,下面给出:
1.在JSP页面中,使用了struts2的标签给action中变量赋值
<a href="a.action?resultId=<s:property value='resultId' />" target="pas" οnclick="window.open('','pas','width=800,height=500')" >查看</a>
2.在JS中,有时候需要在JS中画表格,表格中有超链接的可以用下面方式:(data.join()方法画表格)
data.push("<td><a href='a.action?resultId="+s[i].d+"' target='pas' οnclick='window.open(\"\",\"pas\",\"width=800,height=500\")'>查看</a></td>");
其中s[i].d为变量
这样,在单击的时候在一个宽800px 高500px的窗口中打开新页面!