怎么弄网页自动转跳
- 提问者网友:皆是孤独
- 2021-06-04 04:04
- 五星知识达人网友:北城痞子
- 2021-06-04 05:34
代码一、
在<html>后边加这句
<meta HTTP-EQUIV=REFRESH CONTENT="2;URL=www.webso.com.cn">
其中content="几秒后跳转;url=跳转页面"
代码二、
在 <head></head> 之间加入以下代码:
<meta http-equiv="refresh" content="5;URL= http://www.yoururl.com">
注:content:时间,以秒为单位;URL:转向的网址。
在 <body> 里添加代码:
<body onload="location.href='www.yoururl.com'">
脚本形式:
<SCRIPT LANGUAGE="javascript">
<!-- Start Code
if ((screen.width == 800) && (screen.height == 600))
{
window.location.href="news/main.asp"
}else
window.location.href="news/main.asp"
// End Code -->
</SCRIPT>
代码三、
<meta http-equiv="refresh" content="5;URL= http://www.webso.cn">
content="5:设自动刷新的时间为‘5秒’
作用:可做成两种形式的效果1、自动跳转2、每隔几秒刷新当前页
注:请将本段代码插入:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
>请将本段代码插入当前位置<
<title>炎黄视讯</title>
</head>
- 1楼网友:鸠书
- 2021-06-04 09:36
安F5
- 2楼网友:青尢
- 2021-06-04 09:10
用dw编辑网页:
在<head> </head>插入如下代码! <meta http-equiv="Refresh" content="30;URL=你要跳转的网站" />
- 3楼网友:青尢
- 2021-06-04 08:11
- 4楼网友:一把行者刀
- 2021-06-04 07:25
- 5楼网友:荒野風
- 2021-06-04 06:04
使用JSP中内置对象
<% response.setHeader("Refresh", "时间; url=网址"); %>