为什么这串代码没有反应
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<h4>操作成功</h4>
<p><span id="second">5</span>秒后返回到主页<a href="window.history.back()">返回</a></p>
<script type="text/javascript">
var i=document.getElementIdBy("second").innerHTML;
setInterval(
if (i>1)
{i=i-1;}
else
{ location.assign("www.baidu.com")},
1000)
</script>
</body>
</html>
计数器没反应