复制代码 代码如下:
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>跳转页面</title>
<script src="jquery.js"></script>
<script language="javascript"><!--
$(document).ready(function() {
function jump(count) {
window.setTimeout(function(){
count--;
if(count > 0) {
$('#num').attr('innerHTML', count);
jump(count);
} else {
location.href="http://vevb.com";
}
}, 1000);
}
jump(3);
});
// --></script>
</head>
<body>
<span>欢迎来到vevb.com!</span><br/>vevb.com页面将在3秒后跳转...<br/>还剩<span>3</span>秒
</body>
</html>
新闻热点
疑难解答
图片精选