为什么document.write无效
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
<script type="text/javascript">
function sss(){
window.location.assign("https://www.baidu.com");
}
function goback(){
window.history.back();
}
var seconds = parseInt(document.getElementById("clock").innerHTML);
document.write(seconds);//为什么这个不显示了?????
</script>
</head>
<body>
<!--先编写好网页布局-->
<h1>计时页面开始</h1>
<p><strong id="clock">5</strong>秒后返回主页<a href="javascript:goback();">返回</a></p>
</body>
</html>