很多从都问过这个问题,其实如果你看它的原代码就知道,是javascript+WEB页面,你所说的哪些功能全是用脚本来实现的,还有美工处理也很重要.相关的代码在javascript版中可以找到不少~~

解决方案 »

  1.   

    <script language=jscript>
     window.open(test.htm','','fullscreen=yes');
    </script>
      

  2.   

    <script language=jscript>
      window.close()
     window.open(test.htm','','fullscreen=yes');
    </script>
      

  3.   

    function OpenWin()
    {
    window.opener = null;
    window.close();
    var szlenWin = window.open("login.htm","iSISA_login","fullscreen=yes");
    szlenWin.moveTo((screen.width-320)/2,(screen.height-240)/2);
    szlenWin.resizeTo(320,240);
    szlenWin.focus(); 
    }function ExitWin()
    {
    if(confirm('您真的要退出吗?'))
    {
    window.opener = null;
    window.top.close();
    }
    }function ChangeTab()
    {
    if(event.keyCode==13)
    {
    event.keyCode=9;
    }
    }
      

  4.   

    上面的都说了,来晚了~~
        说句实话,我一般看到 这样的东西,但都不看,太烦人了~~还有哪个自动改我的主页的,满屏幕飞窗口的,还有一个劲往外弹广告的(没办法,用myie,那种广告看都不看~~)~~
      

  5.   

    <script..
    aa()
    window.close()
    window.showmod..
    <body onload='aa()'..
      

  6.   

    public static void OpenNewFullScreenPage( Page page, string pageUrl, bool isCloseOldPage, string scriptName )
    {
    StringBuilder StrScript = new StringBuilder(); 
    StrScript.Append( "<script language=javascript>" );
    StrScript.Append("width=screen.Width-10;"+"\n");
    StrScript.Append("height=screen.height-60;"+"\n"); 
    StrScript.Append( "window.open('"+ pageUrl +"','_blank','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=0,left=0,height='+ height +',width='+ width +'');" ); 
    if ( isCloseOldPage )
    {
    StrScript.Append( " window.focus();" );
    StrScript.Append( " window.opener=null;" );
    StrScript.Append( " window.close(); " );
    }
    StrScript.Append( "</script>" );
    if ( ! page.IsStartupScriptRegistered( scriptName ) )
    {
    page.RegisterStartupScript( scriptName, StrScript.ToString() );
    }
    }
      

  7.   

    晕,都是脚本实现的啊。。javascript对窗体外观和网页特效是很有一套的啊,建议多学学
      

  8.   

    直接调用window.close是不行的,会弹出是否关闭这样的对话框,很讨厌。但可以有一个方法实现,就是用setTimeOut(),在定时器里window.close.然后再window.open(,"fullscreen=yes")
      

  9.   

    function OpenWin()
    {
    window.opener = null;
    window.close();
    var newWin = window.open("new.htm","new","fullscreen=yes");
    newWin.moveTo((screen.width-320)/2,(screen.height-240)/2);
    newWin.resizeTo(320,240);
    newWin.focus(); 
    }
    <body onload=OpenWin();>
      

  10.   

    其实大家的方法都没错,这样实现在右侧都会有个滚动条,其实除了在打开时用window.open("","","fullscreen=yes");外还有个重要的关键点:在要打开的全屏页而中body中加入scroll=no如:
    <body scroll=no>