HTML 定时跳转网页

HTML 定时跳转网页,第1张

1:定时器

····

<html>

<head>

<script>

/*

setTimeout 设置过期时间

setTimeout(时间到了之后要执行的行为,什么时间 毫秒 开始执行)

setInterval 设置中断时间

setInterval(时间到了之后要执行的行为 , 间隔多长时间再执行 )

*/

</html>

····

2:一闪一闪亮晶晶

····

html>

<head>

<style>

#container{

width: 400px

height: 400px

border: 1px solid yellowgreen

background-color: black

position: relative

}

</html>

····

3:定时跳转网页

····

<html>

<head>

<style>

#box{

width: 1300px

height: 100px

line-height: 100px

border: 1px solid black

color: yellowgreen

font: 29/30px "simsun"

text-align: center

}

</style>

</html>

····

4:d窗

····

<html>

<head>

<script>

alert("我是d窗")

window.alert("全写的窗口d窗")

</html>

····

如果用a标签的话,把href置为空,然后js里面进行跳转,比如:

<a href="javascript:" onclick="test()">点击跳转</a>

--以下js代码:

function test(){

setTimeout(function(){

window.location.href=****

},3000)

//3000即为3秒钟

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7612057.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-07
下一篇 2023-04-07

发表评论

登录后才能评论

评论列表(0条)

保存