无法通过在 IE11 上单击输入提交按钮来提交表单

unable to submit form by clicking input submit button on IE11

我有以下表单,无法通过单击提交按钮提交。

<form name="fEdit" class="inputform" id="my_form" method="post" action="test" enctype="multipart/form-data">
<input type="hidden" name="mode" value="update" />                                                                                                                                             
<input type="hidden" name="tab" value="<?=$tab?>" />                                                                                                                                           
<input type="hidden" name="id" value="" /> 
<input type="submit" value="確定" onclick="return confirm('Do you want to save?');" />
</form>

我觉得问题是action="test"

action=" " 属性指定在提交表单时将表单数据发送到哪里

例子..

<form action="test.html/test.php" method="post/get">

我不能post的原因是HTML最大长度属性。