JavaScript window.open 開啟小視窗 功能示範
當關閉視窗一之後,立刻開啟視窗二,範例如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javaScript">
<!---
function A(){
window.open("http://www.google.com.tw/","WindowOpen1","toolbar=Yes,location=Yes,directories=Yes,width=800,height=600");
}
//--->
</script>
</head>
<body onUnload="A()">
在離開時開啟Google...
</body>
</html>
---------------------------------------------------------------------------------------------------------
按下按鈕之後開啟另一個視窗,範例如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title></head>
<body>
<input type="button" value="open windows" onClick="javascript:window.open('http://www.google.com.tw/','WindowOpen2','toolbar=no,location=no,directories=no,width=800,height=600')" />
</body>
</html>
---------------------------------------------------------------------------------------------------------
語法說明:
height=600 視窗高度
width=800 視窗寬度
top=0 視窗距離瀏覽器上方的像素值
left=0 視窗距離瀏覽器左方的像素值
toolbar=no 是否顯示工具列
menubar=no 是否顯示選單列
scrollbars=no 是否顯示滑動軸
resizable=no 是否允許改變視窗大小
location=no 是否允許顯示網址列
status=no 是否顯示狀態列
參考或是複製語法時,別忘了留個言喔 ^ ^ ~