2021-06-09
Posted 奶油莓果酱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-06-09相关的知识,希望对你有一定的参考价值。
HTML中网页的跳转
-
超链接形式实现跳转: 如此代码,通过a href指令进行网页的跳转
<a href="登录.html"><button id="denlu">登 录</button></a>
-
通过
window.location.href
跳转:在form表单中,在<script>
中使用window.location.href进行网页跳转,在此方法中,还可以为一些其他元素设置相关条件,使得条件符合时在完成跳转。
<form>
<button id="btn">注册</button>
</form>
<script>
.
.
.
document.getElementById("btn").onclick=function()
window.location.href="登录.html";
return false;
</script>
以上是关于2021-06-09的主要内容,如果未能解决你的问题,请参考以下文章