大神们看看哪里有问题,为啥没反应
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<h3>操作成功</h3>
<span id="mm">5</span>秒后回到主页<a href="back()">返回</a>
<script type="text/javascript">
var nn;
document.getElementById("mm")=nn;
function bb(){
nn=nn-1;
document.getElementById("mm")=nn;
if(nn==0){
window.location.assign("http://www.imooc.com");
}
}
window.setInterval("bb()",1000);
function vv(){
window.history.back();
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>