html网页自动跳转属性是什么
html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
html网页自动跳转属性是meta标签的http-equiv属性;http-equiv属性需要配合content属性使用,语法“”。
本教程操作环境:windows7系统、HTML5版、Dell G3电脑。
html网页自动跳转属性是meta标签的http-equiv属性。
http-equiv属性用于把 content 属性关联到 HTTP 头部;因此http-equiv属性需要配合content属性使用。
跳转语法:
<meta http-equiv='refresh' content='跳转时间间隔; url=页面地址'>
http-equiv='refresh'
:文档自动刷新。
content='跳转时间间隔; url=页面地址'
:定义文档自动刷新的跳转时间间隔,和跳转地址。
例:
<meta http-equiv='refresh' content='3; url=http://www.sxiaw.com'>
就是3秒后跳转页面至http://www.sxiaw.com(硕下网)
推荐教程:《html视频教程》
以上就是html网页自动跳转属性是什么的详细内容,更多请关注www.sxiaw.com其它相关文章!