我的代码哪出问题呢了

来源:8-17 编程练习

Lshah0

2016-03-15 22:32

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>  
 </head>
 <body>
  <!--先编写好网页布局-->
<h1><strong>操作成功</strong></h1>
<span id="block">5</span><span>秒后回到首页</span><a href="window.history.back()">返回</a>
 
 
  <script type="text/javascript"> 
  function second(){
  document.getElementById("block").innerHTML=var num;
   num=5;
   num--;
     if(num==0){
         location.href("www.imooc.com");
      }
  }
  setInterval("second()",1000);



为什么秒不变呢

写回答 关注

1回答

  • 新爷o
    2016-03-15 22:59:26
    已采纳

    问题有好几处呢:1,先定义var num=5;然后再输出document.getElementById("block").innerHTML=num;输出后进行自减,num--;2,打开网页应该是location.assign("http://www.imooc.com");location.href("http://www.imooc.com")是返回()里的字符串也就是网址。

    Lshah0 回复新爷o

    我刚试了 用 num=document.getElementById("block").innerHTML ;为什么也不行呢,我看别人代码也这么写的啊

    2016-03-15 23:15:05

    共 4 条回复 >

JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题