window.open()支援環境: JavaScript1.0 /JScript1.0 /Nav2 /IE3 /Opera3
window.open(pageURL,name,parameters)
pageURL 為子視窗路徑
name 彈出視窗的名稱
parameters 為視窗參數(各參數以逗號分隔)
alwaysLowered | yes/no | 指定視窗隱藏在所有視窗之後
alwaysRaised | yes/no | 指定視窗懸浮在所有視窗之上
depended | yes/no | 是否和父視窗同時關閉
directories | yes/no | Nav2和3的目錄列是否可見
height | pixel value | 視窗高度
hotkeys | yes/no | 在沒選單列的視窗中設安全退出熱鍵
innerHeight | pixel value | 視窗中文件的像素高度
innerWidth | pixel value | 視窗中文件的像素寬度
location | yes/no | 位置列是否可見
menubar | yes/no | 選單列是否可見
outerHeight | pixel value | 設定視窗(包括裝飾邊框)的像素高度
outerWidth | pixel value | 設定視窗(包括裝飾邊框)的像素寬度
resizable | yes/no | 視窗大小是否可調整
screenX | pixel value | 視窗距螢幕左邊界的像素長度
screenY | pixel value | 視窗距螢幕上邊界的像素長度
screenY | pixel value | 視窗距螢幕上邊界的像素長度
screenY | pixel value | 視窗距螢幕上邊界的像素長度
screenY | pixel value | 視窗距螢幕上邊界的像素長度
screenY | pixel value | 視窗距螢幕上邊界的像素長度
screenY | pixel value | 視窗與螢幕上邊界的像素長度
scrollbars | yes/no | 視窗是否可有捲動列
<script> <open; ','newwindow','height=100,width=400,top=0,left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no, status=no') <BR></script>
<script> <BR>var obj = new name(obj; "51js"; <BR>window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px"); <BR></script> <br>//modal.htm <br><script> <BR>var obj = window.dialogArguments <BR>alert("您傳遞的參數為:" obj.name) <BR></script>
//--------------------------- ----
//2.可以透過window.returnValue向開啟對話框的視窗傳回訊息,當然也可以是物件。例如:
//------------------------------
//parent.htm <br><script> <BR>str. htm",,"dialogWidth=200px;dialogHeight=100px"); <BR>alert(str); <BR></script> <br>//modal.htm <br><script> <BR>window.returnValueValue ="http://www.bokee.com"; <BR></script>
1 .在原來的窗體中直接跳轉用
window.location.href="你所要跳轉的頁面";
2、在新窗體中打開頁面用:
window.open('你要跳轉的頁');
window.history.back(-1);回上一頁