本节内容:
javascript setInterval的二种调用方法的例子。
例子:
复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>setInterval的二种调用方法-www.jb200.com</title>
<style type="text/css">
#main{border:1px solid black; width:200px;margin:0px auto;padding:100px;}
</style>
<script type="text/javascript">
window.onload = function () {
//方法1,传递方法指针
//setInterval(showMsg, 1000);
//方法2,调用方法
var methodName = "showMsg()"; //此处使用了字符串,并且加了括号
setInterval(methodName, 1000); //加了双引号,表示其中是代码,会执行里面的代码类似于setInterval("alert('a')",1000),每隔1秒执行alert('a')
}
var seconds = 5;
function showMsg() {
if (seconds > 0) {
seconds--;
document.getElementById("msg").innerHTML = seconds + "秒钟后自动关闭!";
}
else {
window.close();
}
}
</script>
</head>
<body>
<div id="main">
广告窗体:
<div id="msg">5秒钟后自动关闭!</div>
</div>
</body>
</html>