JavaScriptは一つのページを弾いています.
1206 ワード
1、ボタン:
開いているページスクリプトのラベル内
<input type="button" class="btn btn-success " value=" " onclick="openPage();" />
2、方法:function openPage(){
var openUrl="/xxx/yyy.jsp"; // ;
var openName=" "; // , ;
var iWidth=400; // ;
var iHeight=200; // ;
//window.screen.height ,window.screen.width
var iTop = (window.screen.height-30-iHeight)/2; // ;
var iLeft = (window.screen.width-10-iWidth)/2; // ;
window.open(openUrl,openName,'height='+iHeight+',,innerHeight='+iHeight+',
width='+iWidth+',innerWidth='+iWidth+',top='+iTop+',left='+iLeft+',
toolbar=no,menubar=no,scrollbars=no,
resizeable=no,location=no,status=no');
}
3、ページ:開いているページスクリプトのラベル内
alert(" , "); window.opener.document.all.bigImgPath.value='<%=request.getAttribute("filename")%>'; window.opener.document.all.bigImgPoster.innerHTML='<%=request.getAttribute("filename")%>'; window.opener=null; window.open('','_self'); window.close();