高手求助,为什么写完没效果呢,而且浏览器预览也是乱码?
代码如下:
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id='second'></span> 秒后回到主页 <a href="javascript:back()">返回</a>
<script type="text/javascript">
var num=5
function startCount(){
if(num=0){location.assign("http://www.imooc.com");}
document.getElementById("second").innerHTML=num;
num--;
setTimeout("startCount()",1000);
function backup() {window.history.back();}
startCount()
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>