我在ASP.NET MVC应用程序中使用 input 表单元素遇到麻烦。 “添加”和“删除”输入按钮在Chrome中可正常使用,但在IE中则无法正常使用。
我们正在使用IE 11和Chrome 66
这是呈现的HTML:
<form action="/MyController/ActionWindow" method="post"><input name="__RequestVerificationToken" type="hidden" value="[TOKEN]" />
<table width="80%">
<tr align="left">
<th>
Desired Action:
</th>
</tr>
<tr align="left">
<td>
<table>
<tr align="left">
<td width="100">
<input type="submit" formmethod="post" formaction="/MyController/AddItem" value="Add Group" name="Add" id="submit" />
</td>
<td width="100">
<input type="submit" formmethod="post" formaction="/MyController/RemoveItem" value="Remove Group" name="Remove" id="submit" />
</td>
<td width="100">
<input type="button" value="Cancel" onclick="Cancel();" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>