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)
查看全文
相关阅读:
Git官方推荐用书
二叉树-补习
POJ 2251 Dungeon Master(三维BFS)
Codeforces 675C Money Transfers (思维题)
HDU 1195 Open the Lock(BFS)
HDU 1010 Tempter of the Bone(DFS+剪枝)
POJ 1426 Find The Multiple(DFS,BFS)
POJ 3216 Prime Path (BFS)
POJ 3278 Catch that cow(BFS)
UVa 572 Oil Deposits(简单DFS)
原文地址:https://www.cnblogs.com/bdstjk/p/2519867.html
最新文章
jQuery跨域
离线存储
OpenCV探索之路(一):win10 X64+VS2015+opencv3.10安装教程
基于深度学习的目标检测技术演进:R
OpenCV探索之路(二):图像处理的基础知识点串烧
OpenCV探索之路(五):图片缩放和图像金字塔
OpenCV探索之路(四):膨胀、腐蚀、开闭运算
OpenCV探索之路(三):滤波操作
OpenCV探索之路(七):霍夫变换
OpenCV探索之路(六):边缘检测(canny、sobel、laplacian)
热门文章
OpenCV探索之路(九):模板匹配
OpenCV探索之路(八):重映射与仿射变换
一道堆栈和序列的题目
一道关于双端受限队列的题目
git pull rebase
循环队列的一些计算
一道关于堆栈的题目
Git里有些费解的术语和设计
coding规约的网站, 从sonar中链接过去
下载的模板, 没有之一
Copyright © 2011-2022 走看看