js window对象
2021-03-21 05:25
标签:表示 close 第一个 val 存储 UNC button function scrollto windows: 属性:opener。 代表父窗体:window.opener.test(); ---调用父窗体中的test()方法。 这是我的窗口 这个是源窗口! 方法: 打开/关闭窗口: open(): close(): window.close(); //关闭本窗口 定时器: setTimeout():时间到了, 就会执行一个指定的 method/function setInterval():setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。 清除定时器: scrollTo():scrollTo() 方法可把内容滚动到指定的坐标。 moveTo():将窗口移动到某一位置 这是我的窗口 location: 属性:href 用脚本来跳转页面。 方法:reload()。 刷新页面。 history: 方法:go() js window对象 标签:表示 close 第一个 val 存储 UNC button function scrollto 原文地址:https://www.cnblogs.com/www1842564021/p/11830189.htmlfunction openWin(){
myWindow=window.open(‘‘,‘‘,‘width=200,height=100‘);
myWindow.document.write("
window.open([URL], [窗口名称], [参数字符串])
关闭新建的窗口。
setTimeout("changeState()",1000 );
function changeState(){
alert("这是等待三秒");
}
var biao = 0;
setInterval("changeState()",1000 );
function changeState(){
biao++;
alert(biao);
}
var timer1=window.setTimeout(function(){},1000); //timer1->1 当前是第一个定时器
var timer2=window.setTimeout(function(){},1000); //timer2->2 当前是第二个定时器
window.clearTimeout(timer1);window.clearInte
function scrollWindow(){
window.scrollTo(100,500);
}
function openWin(){
myWindow=window.open(‘‘,‘‘,‘width=200,height=100‘);
myWindow.document.write("window.location.href = "https://www.baidu.com";
window.location.reload();
history.go(num)表示向前或向后翻多少页,num为正数表示向前翻,为负数则向后翻。