js特效,弹出窗体

<script type ="text/javascript">

   function Manage()           --------弹出小窗体 居中显示
   {
   var hdc=window.open('DengLu.aspx',"aa","width=300,height=200");
   var width=screen.width;
   var height=screen.height;
   hdc.moveTo((width-300)/2,(height-200)/2);
   }

   function OpenDialog() --------弹出全屏窗体
   {
   var width=screen.width;
   var height=screen.height;
   window.showModalDialog("DengLu.aspx","","dialogwidth="+width+"px;dialogHeight+="+height+"px;status=no;heip=no;scrollbars=no");
   }
    -----------自动弹出窗体
   window.open("DataList.aspx","new","height=230px,width=230px;top=10px,left=20px")

    </script>

posted @ 2011-09-04 12:59  108ぜIT農夫  阅读(319)  评论(0编辑  收藏  举报