relate js

来源:互联网 发布:2016网络媒体广告报价 编辑:程序博客网 时间:2024/06/05 06:40

function openNewWin(strUrl,strName,width,height)
{
var win;
win=window.open(strUrl,strName,"toolbar=no,left=2,top=2,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=yes,status=yes,center=yes");
win.focus();
}
function openNewWinno(strUrl,strName,width,height)
{
var win;
win=window.open(strUrl,strName,"toolbar=no,left=250,top=150,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=no,status=yes,center=yes");
win.focus();
}
function openNewWinfull(strUrl,strName,width,height)
{
var win;
var width=screen.width;
var height=screen.height;
win=window.open(strUrl,strName,"toolbar=no,left=2,top=2,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=yes,status=yes,center=yes");
win.focus();
}
function opendialog(strUrl,width,height){
 //var width=100;
 //var height=50;
 window.showModalDialog(strUrl,"","dialogWidth="+width+"px;dialogHeight="+height+"px;status=no;help=no;scollbars=no")
}

 

 

 

 

<script src="js/openwin.js"></script>

原创粉丝点击