求php判断语句!
我现在想换一个域名,不过老的域名还会用一段时间,我想做一个宣传转跳:当用户输入www.时,直接进入网站,当用户输入www.时,页面弹出提示:我们的域名已经更新为***,请牢记!然后转跳到www.站
<head> <!-- 以下方式定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=http://www.
<script language="javascript" type="text/javascript"> // 以下方式直接跳转 window.location.href='hello.html'; // 以下方式定时跳转 setTimeout("javascript:location.href='http://www.'", 5000); </script>
<span id="totalSecond">5</span>秒后跳转到新域名下面 <script> var totalSecond = document.getElementById('totalSecond'); var second = totalSecond.innerHTML; setInterval("redirect()", 1000); function redirect(){ totalSecond.innerHTML=--second; if(second<0) location.href='http://www.'; } </script>