window
Posted haijuanya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window相关的知识,希望对你有一定的参考价值。
一、window语法:window.方法(参数);
1、window方法及方法参数
open(URL,name,feature,replace);
open方法 的第三个参数,以字符串的形式表示,多个特征之间使用","分隔
如下例:<script>
var news;
function newPage(){
news = window.open("new_file.html","newPage","width=500,height=500,top=250,left=250,resizable=no,location=no,menubar=no");
}
function newPage(){
news = window.open("new_file.html","newPage","width=500,height=500,top=250,left=250,resizable=no,location=no,menubar=no");
}
</script>
setIntel(函数的引用,时间间隔);
setInterval()在指定的时间间隔重复调用指定的函数
示例
var i = 0;
function fun(){
document.close();
document.open();
document.write(i++);
}
setInterval(fun,1000);
setTimeout();停止setInterval的执行
示例:
<script>
var i = 0;
function fun(){
console.log(i++);
}
var interval = setInterval(fun,100);//使用变量接收计时器的句柄(对象的引用)
function clear1(){
clearInterval(interval);//通过计时器的句柄停止计时器的执行
}
setTimeout();(函数的引用,指定时间);
clearTimeout停止setTimeout;方法同上
以上是关于window的主要内容,如果未能解决你的问题,请参考以下文章