zoukankan
html css js c++ java
javascript学习(三)——常用方法(2)
一、兼容性较高的浏览器页面关闭
//关闭网页,不支持火狐(火狐返回上次浏览页面) //FireFox非window.open()等弹出页面,需要在地址栏中输入about:config, 然后将dom.allow_script_to_close_windows改为true才能达到想要的效果。 function CloseWebPage() { if (navigator.userAgent.indexOf("MSIE") > 0) { if (navigator.userAgent.indexOf("MSIE 6.0") > 0) { window.opener = null; window.close(); } else { window.open('', '_top'); window.top.close(); } } else if (navigator.userAgent.indexOf("Firefox") > 0) { window.history.go(-1); } else { window.close(); } }
二、window.showModalDialog()扩展
<span style="font-size:13px;">// 打开ModalDialog子窗口,并获取返回值 function ModalDialogOpen(wUrl, wWidth, wHeight) { if (window.showModalDialog != null)//IE判断 { var returnvalue = window.showModalDialog(wUrl, "_self", "dialogWidth:" + wWidth + "px;dialogHeight:" + wHeight + "px;status:no;help:no;scrolling=yes;scrollbars=yes;center=yes"); if(!returnvalue){ returnvalue = window.ReturnValue;; } return returnvalue; } else { this.returnAction = function(strResult) { if (strResult != null) return strResult; } window.open(wUrl, "", "width=" + wWidth + ",height=" + wHeight + ",menubar=no,toolbar=no,location=no,scrollbars=yes,status=no,modal=yes"); } } // 关闭ModalDialog子窗口,并返回值 function ModalDialogClose(val) { if (window.showModalDialog != null)//IE判断 { if (navigator.userAgent.indexOf("Chrome") > 0) { // Chrome支持 window.opener.ReturnValue = val; } else { parent.window.returnValue = val; } window.close(); //firefox不支持 } else { window.opener.returnAction(val); top.close(); //IE和FireFox都支持 } } </span>
javascript学习(三)——常用方法(1)
查看全文
相关阅读:
关于jstl.jar引用问题及解决方法
React 解析/ 第二节 使用 Reac
NOde.js的安装和简介
JACOB调用控件函数
Linux 常用命令
webService接口发布失败问题
CommonsMultipartFile---用Spring实现文件上传
验证签名(章)是否有效的方法
新起点,新征程
使用C#正则表达式获取必应每日图片地址
原文地址:https://www.cnblogs.com/bdstjk/p/2519867.html
最新文章
模块化前端开发入门指南(一)
解决虚拟机centos7 无法无法上网问题
泛型编程-2
说散就散之前任泛型-1
nginx配置文件详解
quzrtz的使用
linux_Mysql导入数据基本操作
利用ThreadLocal解决SimplaDateFormat线程不安全的问题
Spring同一个类中注解方法互相调用的问题
Excle无法在受保护的视图中打开该文件
热门文章
确定重试在框中输入包含安装程序包XXXXX.msi
SQL查询数据库死锁
(Linux学习笔记二)linux的文件权限与目录配置
(Linux学习笔记一)linux基本命令与求助 man page
Linux学习笔记(一)
比特币系统是如何运行的?(转自知乎,原作者Wu Hao)
Spring+SpringMvc+Mybatis 框架的搭建(一)
数据库之Oracle(二)
数据库之Oracle(一)
Spring+SpringMvc+Mybatis 框架的搭建(二)
Copyright © 2011-2022 走看看