那要看另一页面是child or parent
if close child
parent.htm
function aa()
{gua=window.open()
.
.
gua.window.close()
}
--------------------
if close parent 
child.htm
function aa()
{
.
.
.
openner.window.close()
}

解决方案 »

  1.   

    Look at following!close Method--------------------------------------------------------------------------------Closes the current browser window or HTML Application (HTA). Syntaxwindow.close()Return ValueNo return value.ResHow a window is closed programmatically determines whether the user will be prompted with a confirmation dialog box. Invoking the window.close method on a window not opened with script will display a confirmation dialog box. Using script to close the last running instance of Microsoft® Internet Explorer also opens the confirmation dialog box. 
    Invoking the window.close method on an HTA closes the application without prompting the user because the HTA is trusted and follows a different security model.When a function fired by an event on any object calls the close method, the window.close method is implied. <SCRIPT LANGUAGE="JScript">
    function foo() {
        close();}
    </SCRIPT>
    <BODY onclick="foo();">
    Click this page and window.close() is called.
    </BODY>When an event on any object calls the close method, the document.close method is implied. <BUTTON onclick="close();">
    Click this button and document.close() is called.
    </BUTTON>Standards InformationThis method is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1
      

  2.   

    还是不是明白啊,我是在一个ASP页面中加入JAVASCRIPT,想控制一个页面的管理怎么做那?