arkia123 发表于 2020-12-18 16:15:59

html使用按钮跳转另外一个html网页

html使用按钮跳转另外一个html网页

zxcbcv 发表于 2020-12-18 19:44:36

外面套个a标签呗

arkia123 发表于 2020-12-19 22:28:12

<input type="submit"value="登"><a href="期末期末期末.html"></a>

这样吗 还是不行阿

kogawananari 发表于 2020-12-20 00:13:02

input type="submit"意思是提交请求点击它触发它所在的form标签的onsubmit事件
return false可以阻止提交,location.href可以修改浏览器的url导致跳转
所以你想点击它只跳转页面不提交请求可以这样:
    <form onsubmit='location.href="期末期末期末.html";return false;'>
    <input type="submit"value="登">
    </form>

页: [1]
查看完整版本: html使用按钮跳转另外一个html网页