`
cakin24
  • 浏览: 1386338 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

Window close() 方法

阅读更多

定义和用法

close() 方法用于关闭浏览器窗口。

语法

window.close()

实例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="gb2312">
  5. <title>关闭窗口</title>
  6. <script>
  7. function openWin()
  8. {
  9. myWindow=window.open("","","width=200,height=100");
  10. myWindow.document.write("<p>这是'我的窗口'</p>");
  11. }
  12. function closeWin()
  13. {
  14. myWindow.close();
  15. }
  16. </script>
  17. </head>
  18. <body>
  19. <input type="button" value="打开我的窗口" onclick="openWin()"/>
  20. <input type="button" value="关闭我的窗口" onclick="closeWin()"/>
  21. </body>
  22. </html>

运行效果



 
  • 大小: 6.6 KB
1
0
分享到:
评论

相关推荐

    解决[removed]window.close()在chrome,Firefox下失效的问题

    window.close(),一看就知道是用来关闭浏览器窗口的方法。W3CSchool对该方法的解释如下:方法 close() 将关闭有 window 指定的顶层浏览器窗口。某个窗口可以通过调用 self.close() 或只调用 close() 来关闭其自身...

    模态窗口插件Remodal.zip

     window plugin with declarative configuration and hash tracking.       data-remodal-action="cancel" class="remodal-cancel"&gt;Cancel   data-remodal-action="confirm" class="remodal-...

    speechtoolboxes专门的语音处理工具-speech_toolboxes2.rar

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    speechtoolboxes专门的语音处理工具-untitled.fig

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    speechtoolboxes专门的语音处理工具-VOCOS.rar

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    speechtoolboxes专门的语音处理工具-untitled2.fig

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    speechtoolboxes专门的语音处理工具-untitled1.fig

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    speechtoolboxes专门的语音处理工具-speech_toolboxes1.rar

    % Main GUI window for speech toolboxes in Childers' Speech book % This GUI window is designed to run in the Matlab runtime server % mode. From this window the user can call any of the software % ...

    不提示直接关闭网页窗口的JS示例代码

    在IE7、IE8中,使用JavaScript提供的close()方法都可以关闭当前窗口或标签,但都提示讨厌的对话框,找了下代码,终于可以无提示直接关闭了。 JavaScript代码 代码如下:function CloseWin() { window.opener=null;...

    一个关于Halcon函数的记录

    dev_close_window ( : : : ) 关闭活跃的图形窗口。 read_image ( : Image : FileName : ) ;加载图片 get_image_pointer1 ( Image : : : Pointer, Type, Width, Height ) ;获得图像的数据。如:类型(= ' 字节',...

    asp.net后台关闭当前页面并传值的两种方法

    第一种: 代码如下:Response.Write(“[removed]window.close();[removed]”);// 会弹出对话框询问是否关闭 第二种: 代码如下:Response.Write(“[removed]window.opener=null;window.close();[removed]”);// 不会...

    javascript 实现父窗口引用弹出窗口的值的脚本

    看下这个弹出窗口中写的函数或许你就明白了: 代码如下:function goIt(obj_id,obj_name) { window.opener.document.forms[“myForm”].elements[“form_plant_shu”].value... window.close(); return false; }

    基于mysql的论坛(7)

    ?... if ($b1) { if (is_user_exits($fromname) and check_user_password($fromname,$password)) { ...input type="button" value=" 关闭窗口 " name="B1" onclick="window.close()"&gt;&lt;/form&gt;"; } else { $f

    脚本收藏iframe

    window.close();” value=”IE6最简单的无提示关闭窗口” &gt; 2、防止被人iframe if (top.location != self.location) { top.location.href=”http://www.34do.net”; } 3、判断一个对象存在不存在 document....

    javascript学习随笔(使用window和frame)的技巧

     window对象是JavaScript客户层次结构的最顶层对象, form元素和全部JavaScript代码都是存在于文档中,而文档被装载进窗口. 为了理解窗口怎样工作,你可以控制操作这些窗口. 打开和关闭窗口 当用户启动(launch)...

    Synthesia(钢琴模拟软件) v10.2.zip

    或者依次打开我的电脑-&gt;卸载或更改程序-&gt;卸载你所卸载的软件,您可以用 Window XP控制面板中的添加或删除程序功能,或用 Windows Vista、Windows 7中的程序和功能删除Synthesia, 然后点击开始卸载,按步骤依次点击...

    兼容ie和firefox js关闭代码

    搜索发现,可以这样解决:[removed] function closeWindow() { window.open(”,’_parent’,”); window.close(); } [removed] &lt;a&gt;Close Window  好多朋友用到是自动关闭页面代码 [removed]function closeWindow...

    浅谈javascript alert和confirm的美化

    为了保留原有的alert和confirm方法,我们不直接替换window对象的alert和confirm,而是新建一个win对象,该对象下有alert、confirm、open、close等。win.alert等的对话框弹出层,使用iframe作底层,确保对话框在ie7...

    Javascript基础知识(三)BOM,DOM总结

    window.close() 系统对话框: 1.alert&#40;“hello world!”&#41;; 2.confirm&#40;“Are you sure?”&#41;;—选择 3.prompt&#40;“你的名字是说明?”,””&#41;; 时间间隔 setTimeout(“alert&#40;‘hello world!’...

    html下载本地

    通过javascript 实现 ...下载文件 ####### ... [removed] if (typeof(window.opener) != ‘undefined’) //判断 打开方式的下载。 去掉会一打开文件就弹出下载框 { document.... window.close(); } [removed] 

Global site tag (gtag.js) - Google Analytics