Owlapollo
2019-04-17 14:48
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>caozuo is ok!</h1>
<p><span id="aa">5</span>秒后返回主页,<a href="javascript:back();">返回</a></p>
<button id = "bt" onclick="count()">start</button>
<script type="text/javascript">
num=document.getElementById("aa").innerHTML
//document.write(num)
function count(){
num--;
document.getElementById("aa").innerHTML=num;
if(num==0){
window.open("www.baidu.com","_blank","width=120 height=44")
}
//这里的代码没有生效,为什么
i=setTimeout("count()",1000)
if(num==0){clearTimeout(i)}
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
那段代码是生效了的,跳出了一个窗口。但是没有正确跳转到baidu.com,你试试把url改为https://www.baidu.com
后面的把前面的覆盖了?
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题