2013年9月19日 星期四

html-messagebox

html-popup

function PopupCenter(pageURL, title,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
/* *onclick="PopupCenter('http://www.nigraphic.com', 'myPop1',400,400);" */
}


if (window.showModalDialog) {
var returnTarget=window.showModalDialog("FileName",this,
"dialogWidth:600px;dialogHeight:400px;resizable:0;scroll:0;");
} else  {
var returnTarget=window.open("FileName",this,"height=400px,width=600px,toolbar=no,directories=no,status=no,memubar=no,modal=yes,location=no,resizable=no,menubar=no,scrollbars=no,copyhistory=no");
}

沒有留言:

張貼留言