为什么把跳转换成本地打印就报错了
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<style>
span{
float: left;
}
div{
float: left;
}
</style>
<body>
<!--先编写好网页布局-->
<p>操作成功</p>
<span id="miao">5</span>
<div>秒跳转<a href="">返回</a></div>
<script type="text/javascript">
var v=4;
function x(){
document.getElementById('miao').innerHTML=v;
v=v-1;
setTimeout('x()',1000);
}
setTimeout('x()',1000);
//获取显示秒数的元素,通过定时器来更改秒数。
setTimeout("location.assign('https://www.imooc.com/');",5000);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>