好困。。。。继续recording
今天发现一个很好玩的东西,每次当我们打开某些网站,就会提示我们已经迁址了,5秒后自动点击,如果没反应,请点击之类的
实现步骤
<html>
<head>
<meta http-equiv="Refresh" content="5;url="http://www.baidu.com”/>
</head>
<style>
body{background-color:red}
p{color:blue}
a{color:blue}
</style>
<body>
<p>我们已经迁到了新的地址,5秒后将自动跳转,如无反应,请点击跳转<a href="http://www.baidu.com">www.baidu.com</a></p>
</body>
</html>