写写程序,一种成就的感觉

写写程序,一种成就的感觉

导航

asp 自动弹出窗口

Posted on 2009-05-21 15:54  hateyoucode  阅读(194)  评论(0编辑  收藏  举报

<script language="javascript">
/*
var openurl="Notice.html";
var title="特别公告";

function openwin()
{
window.open(openurl,title,'width=460,height=180,top=0,left=0,toolbar=yes,menubar=yes, scrollbars=yes, resizable=yes,location=yes, status=yes');
}

function openshow()
{
window.showModalDialog(openurl,title,'scroll:1;status:0;help:0;resizable:0;dialogWidth:460px;dialogHeight:180px');
}

if (navigator.appName == "Netscape")
{
openwin();
}else{
openshow();
}*/
</script>