为什么document.write无效

来源:8-17 编程练习

聂小虫

2018-02-01 16:20

<!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>


写回答 关注

1回答

  • 聂小虫
    2018-02-01 16:25:42

    我发现了问题,啊,西八 这个语言简直是太不规范了!!!!!!!!!!!!!!

    所有的量应该先定义,再使用。strong id = clock在下面,所以拿不到那个数!!

    但是function在前面定义的话,貌似后面就可以使用!!!!!!!!!!

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题