winid=windows.open( " URL " , " 視窗名稱 " , " 視窗外觀之設定 ");
注意: " 視窗外觀設定 " 參數中的『,』之後不可以含有空白字元
toolbar=yes / no 瀏覽視窗是否顯示『工具列』
fullscreen=yes / no 全螢幕開啟
location=yes / no 瀏覽視窗是否顯示『位址欄位』
directories=yes / no 瀏覽視窗是否顯示『目錄列』
status=yes / no 瀏覽視窗是否顯示『狀態列』
menubar=yes / no 瀏覽視窗是否顯示『功能表』
scrollbars=yes / no 瀏覽視窗是否顯示『捲動軸』
resizable=yes / no 瀏覽視窗是否『可以調整大小』
width=點數 瀏覽視窗的『寬度』
height=點數 瀏覽視窗的『高度』
例:
<SCRIPT Language="JavaScript">
function inputData(targetURL,winW,winH){
screenW=screen.width/2;
screenH=screen.height/2;
winL=screenW-(winW/2);
winT=screenH-(winH/2);
window.open(targetURL,"","toolbar=yes,resizable=yes,scrollbars=yes,width="+winW+",height="+winH+",left=screen.width/2,top="+winT);
}
</SCRIPT>
以上資料引用於:http://tw.myblog.yahoo.com/davidbulll/article?mid=73&prev=79&next=32
toolbar=yes / nofullscreen=yes / no
|
瀏覽視窗是否顯示『工具列』
全螢幕開啟 |
location=yes / no | 瀏覽視窗是否顯示『位址欄位』 |
directories=yes / no | 瀏覽視窗是否顯示『目錄列』 |
status=yes / no | 瀏覽視窗是否顯示『狀態列』 |
menubar=yes / no | 瀏覽視窗是否顯示『功能表』 |
scrollbars=yes / no | 瀏覽視窗是否顯示『捲動軸』 |
resizable=yes / no | 瀏覽視窗是否『可以調整大小』 |
width=點數 | 瀏覽視窗的『寬度』 |
height=點數 | 瀏覽視窗的『高度』 |
//開啟至中函數
<SCRIPT Language="JavaScript">
function inputData(targetURL,winW,winH){
screenW=screen.width/2;
screenH=screen.height/2;
winL=screenW-(winW/2);
winT=screenH-(winH/2);
window.open(targetURL,"","toolbar=yes,resizable=yes,scrollbars=yes,width="+winW+",height="+winH+",left=screen.width/2,top="+winT);
}
</SCRIPT>
<SCRIPT Language="JavaScript">
function inputData(targetURL,winW,winH){
screenW=screen.width/2;
screenH=screen.height/2;
winL=screenW-(winW/2);
winT=screenH-(winH/2);
window.open(targetURL,"","toolbar=yes,resizable=yes,scrollbars=yes,width="+winW+",height="+winH+",left=screen.width/2,top="+winT);
}
</SCRIPT>
沒有留言:
張貼留言