testa.html跳转到testb.html 后。点击页面上的一个按钮,让能够返回到testa.html页面
testa.html
<html>
<body>
<a href="testb.html" target="_self">goto page b</a>
</body>
</html>
testb.html
<html>
<body>
<script>
function backTo() {
window.history.back(-1);
}
</script>
<input type="button" value="back" οnclick="backTo();"/>
</body>
</html>
window.history.back(-1);