我将以下代码用于“返回”按钮:
<INPUT type="button" value="Button" onclick="window.history.back(); return true;">
但是,在上一页我有两个 div 元素。当页面加载时,它将显示 div1。下次点击 div1 的按钮时,会显示 div2。在 div2 上,我有一个“下一步”按钮。重定向到另一个页面。我想要一个“返回”按钮的代码,当单击返回时它将显示 div2。此外,如果我使用 history.back() 它将显示 div1。
HTML 代码
列出您在债务被免除之日计算的所有负债到债务被免除之前
下一个<div id="d2">
<table cellspacing="3">
<tr>
<td colspan="2" class="styleh">
<p>
<b>Part II. List the fair market value (FMV) of all your assets, calculated as of the
day prior to the debt being forgiven - this would be the "sell today, cash value."</b></p>
</td>
</tr>
<tr>
<td>
</td>
<td>
<button id="btncalc" onclick="return btncalc_onclick()">
Calculate</button>
<button id="Button2" runat="server">
BACK</button>
</td>
</tr>
</table>
</div>
先感谢您