<!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>
我发现了问题,啊,西八 这个语言简直是太不规范了!!!!!!!!!!!!!!
所有的量应该先定义,再使用。strong id = clock在下面,所以拿不到那个数!!
但是function在前面定义的话,貌似后面就可以使用!!!!!!!!!!