我最近决定制作一个小游戏,并且我尝试设计第一页,创建帐户或转到现有帐户。 这就是我所拥有的:
<center>
<table>
<tr>
<td>
<form action = "findMyAccount.html" method = "post">
<input type = "submit" value = 'Login to an Existing Account' />
</form>
</td>
<td>
<form action = "accountMaker.html" method = "post">
<input type = "submit" value = 'Make a new Account'/>
</form>
</td>
</tr>
</table>
</center>
但是当我点击&#34;制作新帐户&#34; 输入时,我会转到 findMyAccount.html 而不是 accountMaker。 HTML 的。我不确定出了什么问题,我还是个新手,所以请耐心等待。感谢
答案 0 :(得分:0)
我观察了你的代码,我认为你必须在输入标签的末尾删除反斜杠,这可能会解决你的问题。 解: 这样做而不是最后一行代码
<input type="submit" value='Make a new Account'>
而不是
<input type="submit" value='Make a new Account'/>