1.js
程式碼如下:
function openwindow(url,name,iWidth,iHeight)
{
// url 轉向網頁的位址
// name 網頁名稱,// name 網頁名稱,可為空
// iWidth 彈出視窗的寬度
// iHeight 彈出視窗的高度
//window.screen.height收到螢幕的高,window.screen.width獲得螢幕的寬廣. var iTop = (window.screen.height-30-iHeight)/2; //取得視窗的垂直位置;
var iLeft = (window.screen.width-10-iWidth)/2; //取得視窗的水平位置;
window.open(url,name,'height=' iHeight ',,innerHeight=' iHeight ',width=' iWidth ',innerWidth=' iWidth ',top=' iTop ',left=' iLeft ',toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no');
}
2.呼叫方法
程式碼如下:
程式碼如下:轉到a