两个个封装的弹出模式窗口的JS函数

function showMyModalDialog(url, width, height)
{
  showModalDialog(url, '', 'dialogWidth:' + width + 'px;dialogHeight:' + height + 'px;center:yes;status:no;scroll:no;help:no');
}

function showMyModelessDialog(url, width, height)
{
  showModelessDialog(url, '', 'dialogWidth:' + width + 'px;dialogHeight:' + height + 'px;center:yes;status:no;scroll:no;help:no');
}

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注