我有 4 个按钮,它们在提交表单之外?当我单击一个按钮时,它会触发其他按钮的所有单击事件。我看到了这篇文章,将我的输入更改为按钮。它没有帮助,有什么建议吗?
我的页面:
@using (Html.BeginForm("ReportQuestionaire", "Question", FormMethod.Post, new { id = "SignupForm" }))
{
// code removed
}
<button type="button" id="review_btn" onclick="reviewScreen();"></button>
<button type="button" id="SaveAccount" onclick="SaveComplete();"></button>
<button type="button" id="Next"></button>
<button type="button" id="Previous"></button>