HTML:IT 将我重定向到同一个文件而不是 Inscription.html
HTML:IT redirects me to the same file not to Inscription.html
正如我在问题中所说,这是我在重定向到我计算机中的文件时遇到的问题
<a href="../html/inscription.html">
<input type="submit" class="button-2" value="Inscription">
</a>
您不再需要在提交按钮周围放置 link,因为您拥有表单的 action 属性。
你的代码应该是这样的:
<form action="inscription.html" method="post">
<!-- Put the other inputs here -->
<input type="submit" class="button-2" value="Inscription">
</form>
正如我在问题中所说,这是我在重定向到我计算机中的文件时遇到的问题
<a href="../html/inscription.html">
<input type="submit" class="button-2" value="Inscription">
</a>
您不再需要在提交按钮周围放置 link,因为您拥有表单的 action 属性。 你的代码应该是这样的:
<form action="inscription.html" method="post">
<!-- Put the other inputs here -->
<input type="submit" class="button-2" value="Inscription">
</form>