html中怎么把取消按键做成返回
发布网友
发布时间:2022-12-30 15:29
我来回答
共2个回答
热心网友
时间:2023-10-30 20:30
这样啊,一楼有解,我加上一些:
返回是直接<a href='main.html'></a>
如果想要返回上一页 则表示<a href="###" onclick="javascript:history.go(-1);">
热心网友
时间:2023-10-30 20:30
<input type="reset" name="button" id="button" value="重置" onClick="hanshu()">
<script>
function hanshu(){
window.location.href='index.html'//这里是你要返回的页面
}
</script>