keveon
2016-08-28 11:07
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="count0">5</span>秒后返回到主页<a href="history.back()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var i=document.getElementById("count0").interHTML;
function daoshu(){
i--;
document.getElementById("count0").interHTML=i;
if(i==0)
{
location.assign('www.imooc.com');
}
}
setInterval("daoshu",1000)
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
gkb改成utf-8,我用sublime text也出现乱码。
setInterval("daoshu()",1000),调用的时候记住是个函数。
加载页面要用http://
另外,函数名用拼音不妥。
innerHTML获取的类型是String类型,需要parseInt转换成整形才能做减法啊
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题