admin 管理员组

文章数量: 887007

html页面标签meta,配置http

页面定期刷新,重定向执行url的index.shtml,content后面的值代表着时间,单位是秒。

这句话加到指定网页的<head></head>里一般也用在实时性很强的应用中,需要定期刷新的页面。

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ".dtd">
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1" /><title>show</title><meta http-equiv="refresh" content="0; url=index.shtml">
</head>
<body>
show jsp file
</body>

这样的好处在于,页面的跳转不需要通过js控制。页面打开几秒后,自动跳转,这个一般用于广告类。

本文标签: html页面标签meta,配置http