<a target="_self" href="index.htm" onclick=window.open("test.htm","","height=230,width=270,left=290,top=220,resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no")>test</a>
在这种弹出来的网页中,window,close()会强制关闭该网页,而不出现提示框

解决方案 »

  1.   

    是的,与JSP无关open Method--------------------------------------------------------------------------------Opens a new window and loads the document specified by a given URL, or opens a blank document if a URL is not provided.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 Link is loaded into a new, unnamed window. 
    _parent Link is loaded over the parent. If the frame has no parent, this value refers to _self. 
    _search Available in Microsoft&reg; Internet Explorer 5 and later. Opens sURL in the browser's search pane. 
    _self Page is replaced with the specified link. 
    _top Link is loaded at the topmost level. 
     
    sFeatures Optional. String that specifies the window ornaments to display. This 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 a full-screen or normal window. The default is no, which displays the browser in a normal window. 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 also closes the new window. 
    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. 
    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 caller 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. 
    width = number Sets the width of the window, in pixels. The minimum value is 100. 
     
    bReplace Optional. Boolean that specifies whether the URL that is loaded into the new page should create a new entry in the window's browsing history or replace the current entry in the browsing history. If set to true, no new history entry is created. 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&reg; Visual Basic&reg; or an HTML Application (HTA). These applications are considered trusted, because each uses Internet Explorer interfaces instead of the browser.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");
    Standards InformationThis method is defined in Document Object Model (DOM) Level 2 . Applies To[ Object Name ] 
    Platform Version 
    Win16:  
    Win32:  
    WinCE:  
    Unix:  
    Mac:  
    Version data is listed when the mouse hovers over a link, or the link has focus. 
     window 
    Move the mouse cursor over an element in the Applies To list to display availability information for the listed platforms. Internet Explorer does not expose this member on platforms that are not listed. 
    --------------------------------------------------------------------------------&copy; 2001 Microsoft Corporation. All rights reserved. Terms of use. 
      

  2.   

    <html><head> 
    <object id=closes type="application/x-oleobject" 
    classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"> 
    <param name="Command" value="Close"></object> 
    </head> 
    <body> <a href="#" onclick="closes.Click();">关闭窗口无提示</a> 
    </body> 
    </html>
      

  3.   

    <object 到底是什么玩意呢?有人明白的?
      

  4.   

    <object >不就是微软的ActiveX
      

  5.   

    NS中window.close()不会出提示, 
    但是在IE中除了用javascript打开的窗口外,
    都回出提示.