为什么点击返回就显示找不到文件?

来源:8-17 编程练习

qq_一二三亖_nrER57

2018-12-14 16:23

<!DOCTYPE html>
<html> 
<head>  
<title>浏览器对象</title>    
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>    
</head> 
<body>  
<!--先编写好网页布局-->    
<p><b>操作成功</b></p>  
<p><span id='num1'>5</span>秒后回到主页 <a href="history()">返回</a></p>       
<script type="text/javascript">     
var num= document.getElementById('num1').innerHTML   
//获取显示秒数的元素,通过定时器来更改秒数。   
console.log(num)   
function number(){       
num--;       
ocument.getElementById('num1').innerHTML=num       
if(num==0){           
location.assign("http://www.imooc.com");       
}      
etTimeout('number()',1000)   
}      s
etTimeout('number()',1000)   
//通过window的location和history对象来控制网页的跳转。   
function history(){       
window.history.back()   
} 
</script> 
</body>
</html>

https://img3.mukewang.com/5c1368860001fe0f03720297.jpg

写回答 关注

2回答

  • 宝慕林6291606
    2018-12-17 14:09:26

    就我看来,你的代码有以下几个问题。

    1:17行  document写错了,ocument.

    2:21,22行,setTimeout写成了etTimeout

    3:<a href="history()">返回</a></p>  
    这一句里,虽然JS href标签可以接函数,语法是href="javascript:function()",但是这种写法不推荐:推荐写法:

    href="http://www.imooc.com" onclick="history()"。

    4.你的number()函数内,location.assign("http://www.imooc.com");    改为window.location.assign("http://www.imooc.com");


  • 慕虎9542308
    2018-12-15 09:39:02

    没有上一页吧

JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题