弹出窗口
function popupcenterwindow(url, name, width, height, scroll) {
var win = null; var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;
var features = 'height=' + height + ',';
features += 'width=' + width + ','; feat
function popupcenterwindow(url, name, width, height, scroll)
{
var win = null;
var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;
var features = 'height=' + height + ',';
features += 'width=' + width + ',';
features += 'top=' + top + ',';
features += 'left=' + left + ',';
features += 'scrollbars= ' + scroll + ',';
features += 'resizable=no';
win = window.open(url, name, features);
if (parseint(navigator.appversion) >= 4)
{
win.window.focus();
}
return win;
}
function showuploadwindow(picname)
{
var openwindow = popupcenterwindow('modifypic.aspx?picname='+picname,
'uploadpicture', '347', '150', 'no');
}
以上就是弹出窗口 php的内容。