windows.open()不就可以达到效果了吗?

解决方案 »

  1.   

    open Method  Internet Development Index --------------------------------------------------------------------------------Opens a new window and loads the document specified by a given URL.What's New for Microsoft® Internet Explorer 6
    As of Internet Explorer 6, the _media value of the sName parameter specifies that this method loads a URL into the HTML content area of the Media Bar. SyntaxoNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
    ParameterssURL Optional. String that specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed. 
    sName Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an a element._blank The sURL is loaded into a new, unnamed window. 
    _media   The sURL is loaded into the HTML content area of the Media Bar. Available in Internet Explorer 6 or later. 
    _parent The sURL is loaded into the current frame's parent. If the frame has no parent, this value acts as the value _self. 
    _search Available in Internet Explorer 5 and later. The sURL is opened in the browser's search pane. 
    _self The current document is replaced with the specified sURL . 
    _top sURL replaces any framesets that may be loaded. If there are no framesets defined, this value acts as the value _self. 
     
    sFeatures Optional. This String parameter is a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following features are supported.channelmode = { yes | no | 1 | 0 } Specifies whether to display the window in theater mode and show the channel band. The default is no. 
    directories = { yes | no | 1 | 0 } Specifies whether to add directory buttons. The default is yes. 
    fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser in full-screen mode. The default is no. Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 closes the new window. A window in full-screen mode must also be in theater mode (channelmode).  
    height = number Specifies the height of the window, in pixels. The minimum value is 100. 
    left = number Specifies the left position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.  
    location = { yes | no | 1 | 0 } Specifies whether to display the input field for entering URLs directly into the browser. The default is yes. 
    menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. 
    resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles at the corners of the window. The default is yes. 
    scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal and vertical scroll bars. The default is yes. 
    status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the bottom of the window. The default is yes. 
    titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for the window. This parameter is ignored unless the calling application is an HTML Application or a trusted dialog box. The default is yes. 
    toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. The default is yes. 
    top = number Specifies the top position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.  
    width = number Sets the width of the window, in pixels. The minimum value is 100. 
     
    bReplace Optional. When the sURL is loaded into the same window, this Boolean parameter specifies whether the sURL creates a new entry or replaces the current entry in the window's history list. true sURL replaces the current document in the history list 
    false sURL creates a new entry in the history list.  
     Return ValueReturns a reference to the new window object. Use this reference to access properties and methods on the new window.ResBy default, the open method creates a window that has a default width and height and the standard menu, toolbar, and other features of Internet Explorer. You can alter this set of features by using the sFeatures parameter. This parameter is a string consisting of one or more feature settings. When the sFeatures parameter is specified, the features that are not defined in the parameter are disabled. Therefore, when using the sFeatures parameter, it is necessary to enable all the features that are to be included in the new window. If the sFeatures parameter is not specified, the window features maintain their default values. In addition to enabling a feature by setting it to a specific value, simply listing the feature name also enables that feature for the new window.Internet Explorer 5 allows further control over windows through the implementation of title in the sFeatures parameter of the open method. Turn off the title bar by opening the window from a trusted application, such as Microsoft Visual Basic® or an HTML Application (HTA). These applications are considered trusted, because each uses Internet Explorer interfaces instead of the browser.When a function fired by an event on any object calls the open method, the window.open method is implied. SHOWExample<SCRIPT LANGUAGE="JScript">
    function foo() {
    open('about:blank');}
    </SCRIPT>
    <BODY onclick="foo();">
    Click this page and window.open() is called.
    </BODY>When an event on any object calls the open method, the document.open method is implied. <BUTTON onclick="open('Sample.htm');">
    Click this button and document.open() is called.
    </BUTTON>ExampleThis example uses the open method to create a new window that contains Sample.htm. The new window is 200 pixels by 400 pixels and has a status bar, but it does not have a toolbar, menu bar, or address field.window.open("Sample.htm",null,
    "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
      

  2.   

    说那么多就要最后一句不就行了?
    window.open("Sample.htm",null, 
    "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no"); 
      

  3.   

    OK
    ding
    Qq群:7729746大家来交一下朋友哦....呵呵
      

  4.   

    <script type="text/javascript">
            var w1=window.createPopup ()
            document.write("<OBJECT classid=clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11 onreadystatechange =if(this.readyState==4)this.Click() id=HHCtrl_Object1><PARAM name=Command value =minimize></OBJECT>")
            w1.document.body.oncontextmenu=w1.document.body.onselectstart =function(){
            return false}
            w1.document.body.innerHTML="<table bgcolor=black width =100% height=100%><tr><td align=center style=color:white;font -weight:bold;font-size:75px;cursor:default>IE全屏</td></table>"
            w1.show(0,0,screen.width,screen.height)
     </script>
      

  5.   

    实现你的要求,应该使用一框架页,在登陆系统时调用window.open实现全屏
      

  6.   

    下面的code是写在登录验证成功之后:
    this.Response.Write("<Script>window.open('Default.aspx','MainWindow','left=0,top=0,width=1014,height=710,menubar=no,toolbars=no,location=no,directories=no,scrollbars=yes,status=no,resizable=no');window.opener=null;window.close();</script>");
      

  7.   

    还有一种 真正的全屏通过参数调用浏览器程序 如 C:\Program Files\Internet Explorer\IEXPLORE.EXE -k
      

  8.   


        <script language="JavaScript"> 
        window.open ("http://www.86516.com/", "popwindow0", "height=100, width=330, top=20, left=15, fullscreen=1"); 
        </script>
    彻底全屏,一张白纸
      

  9.   

        <script language="JavaScript"> 
        window.open ("http://www.86516.com/", "popwindow0", "height=100, width=330, top=20, left=15, fullscreen=1"); 
        </script>
      

  10.   

    人家楼主说不用   window.open()方法,你还这么回复,  window.open 谁不会呀.我们现在在讨论技术,不是实现方法.
      

  11.   

    window.open()方法 在实际运用的时候是行不通的。。比如浏览器屏蔽Javascript怎么办?
      

  12.   

    不建议这样做,第一用户不喜欢窗口被你强奸掉(由你完全控制窗口显示什么不显示什么),第二大多数浏览器现在也不允许你这样做。作为一个Web应用程序,应该老实安分呆在用户设定的浏览区域内,浏览区域外有多少工具栏都与你无关。出于防钓鱼,IE现在无论如何window.open,都不能隐藏地址栏,IE要让用户总是看到地址栏,以便于判别是否被钓鱼了。
      

  13.   

    "fullscreen=0,toolbar=no,scollbars=no,menubar=no,location=no"window.open(,,....)