html跳转标签,有哪几种,求解决
html跳转标签,有哪几种,求解决
html里面的跳转专用
a标签
1.a标签
<a href="http://www.feiniaomy.com"></a>
2.Js
<script language="javascript" type="text/javascript">
// 以下方式直接跳转
window.location.href = 'https://www.my.com/';
// 五秒以后再跳转
setTimeout("javascript:location.href='https://www.my.com'", 5000);
</script>
3.mera标签
<meta http-equiv="refresh" content="5;url=https://www.my.com">