时间:2021-05-18
BOM(Broswer Object Model)
凡是 window 的属性和方法,均可以省略“window.”
方法:
框窗
1.警告框
2.确认框
3.询问框
页面
1.打开一个窗口
2.在子窗口中使用,表示父窗口的window对象
window.opener
window.opener.fatherSayHello(); 调用父窗口的方法window.opener.a3.关闭当前窗口
window.close()
window.close(); 关闭当前window.opener.close(); 关闭父窗口定时任务
1.定时任务
var taskid = window.setTimeout(function,ms);window.setTimeout("alert('hello!')", 5000);2.间隔执行任务
var taskid = window.setInteval(function,ms);3.清除定时任务
window.clearTimeout(taskid);4.清除间隔执行任务
window.clearInteval(taskid);打印屏幕
//长*宽console.log(screen.width + "*" + screen.height)后退
window.history.back();前进
window.history.forward();刷新
window.location.reload();//刷新window.location.href = window.location.href;//刷新Go 前进(x)步,后退(x)步,刷新(0),
window.history.go(x)链接
window.location.href = http://;用户代理 浏览器内核
console.log(window.navigator.userAgent)框窗
//凡是window的属性和方法,均可以省略“window.”<script type="application/javascript">// 警告框function testAlert(){var result=window.alert("这是一个警告框")console.log(result);}// confirm 确认框function testConfirm(){var result =window.confirm("你确认要离开了吗?");if(result){alert("欢迎下次再来!")}else{alert("那你在逛逛吧!")}consol.log(result);}// prompt 询问框function testPrompt(){var result = window.prompt("请输入U盾密码","例如:123456");console.log(result);}</script><body><button onclick="testAlert();">testAlert</button><button onclick="testConfirm();">testConfirm</button><button onclick="testPrompt();">testPrompt</button></body>页面
//子页面<script type="application/javascript">function sayHello(){alert("hello world")}//打开一个窗口function callFatherMethod(){window.opener.fatherSayHello();window.opener.a}//关闭本窗口function testClose(){window.close();}//关闭父窗口function testFatherClose(){window.opener.close();}</script><body><button onclick="callFatherMethod()">调用父窗口的方法</button><button onclick="testClose()">关闭本窗口</button><button onclick="testFatherClose()">关闭父窗口</button></body>//父页面<script type="application/javascript">var a = 10;window.onload = function(){console.log(window);console.log("11111111111")}//打开一个新窗口function testOpen(){var sonwindow = window.open("son.html","aaa","height=300,width=500,top=50,left=50,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no")//子窗口的window对象console.log(sonwindow);}function fatherSayHello(){alert("hello son!");}</script><body><button onclick="testOpen();">打开一个新窗口</button></body>定时任务
<script type="application/javascript">function setTime() {// window.setTimeout("alert('hello!')",5000);window.setTimeout(sayHello, 5000);}var sayHello = function () {alert("你好!");}</script></head><body><button onclick="sayHello();">调用sayHello</button><button onclick="setTime();">调用setTime</button>间隔执行任务
<script type="application/javascript">var taskid = 0;window.onload = function(){//间隔执行任务,间隔 1000ms 执行一次taskid = window.setInterval(closeSelf, 1000);}function closeSelf() {//获取 10s var secval = document.getElementById("sec").innerHTML;console.log(secval);var secint = parseInt(secval);console.log(secint);//10s 减减document.getElementById("sec").innerHTML = --secint;if(secint == 0){window.close();}}// 4.清除间隔执行任务 暂停function stopTask(){window.clearInterval(taskid);}//继续计时function goonTask(){taskid = window.setInterval(closeSelf, 1000);console.log(taskid)}</script><body>付款成功,页面将在<span id="sec">10</span>s后关闭。<button onclick="stopTask()">稍等,待会我会自己关闭</button><button onclick="goonTask()">继续读秒,关闭窗口</button></body>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了JS深入学习之数组对象排序功能。分享给大家供大家参考,具体如下:JavaScript实现多维数组、对象数组排序,其实用的就是原生的sort()方法
前面有写到Spring+SpringMVC+MyBatis深入学习及搭建(一)——MyBatis的基础知识。MybatisFirst中存在大量重复的代码。这次简
但我觉得这还不行,毕竟什么都是人家封装好的,得自己深入学习下原生的javascript才踏实。今天看到一篇不错的博文,介绍了一个基于jsdom编程的相册实例,虽
直接看Bootstrap标签例子:标签标签dangersuccessPrimary效果如下:注意其中的差异。如果大家还想深入学习,可以点击这里进行学习,再为大家
为什么需要深入学习CSS溢出机制?在实际开发的过程中,内容溢出是经常见到的。如果不深入了解这个机制,你经常会碰到这样的问题:为什么这个元素没有受到祖先元素的ov