1

我有一个使用 Ajax 发送的表单。

有一个带掩码的字段,其值如下所示:(此字段是动态添加的)

(011) 1111-1111

我有一个删除掩码的 beforeSend 回调函数。

我可以在发送表单之前看到该字段:

01111111111

但是在我的控制器中,我得到的值就好像我没有移除面具一样。无法理解为什么!

形式

@using (Ajax.BeginForm("opImportFile", "Operacao", new AjaxOptions { HttpMethod = "POST", OnBegin = "validation", OnSuccess = "LimparCampos", OnFailure = "LimparCampos" }, new { id = "formUpdStoringSettings" }))
{
        <fieldset>
            <legend>Importação - Arquivo</legend>
        <!--    <h2><a href="#" id="AddAbsPath" class="editBtn" onclick="addArmazenamento();" style="font-size:12px; color:#E17009 !important;"> Adicionar</a></h2>            -->
        <table id="tblArmazenamento">            
                <tr id="@element">                           
                    <td>@Html.Hidden("idCaminhoRepositorio_" + element)
                        @Html.TextBox("caminhorepositorio_" + element, "", new { @class = "validate[required] smallField limpar", disabled = "disabled" })
                        @Html.Hidden("caminhoRepositorio_" + element, "", new { @class = "validate[required] smallField limpar"})</td>
                    <td><a href="#" id="editPath" class="editBtn" onclick="FileTree()"> Localizar</a>
                        <a href="#" id="RemAbsPath_@element" class="editBtn" onclick="removeArmazenamento(@element);" style="color:red !important;"> Remover</a>
                    </td>    
                </tr>
            <tr><td colspan="2">@Html.DropDownListFor(m => m.tipo, new SelectList(Model.tipo, "idTipo", "nomeTipo"), "Escolha um Tipo", new { @class = "validate[required] smallField" })</td></tr>             
            <tr><td colspan="2"><br /></td></tr>
        </table><br />
            <input type="submit" value="Importar" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only button-link" />                    
        </fieldset>         
}      

打回来

function validation() {
    $('.mask').each(function (index) {
        $(this).val($(this).val().replace('(', ''));
        $(this).val($(this).val().replace(')', ''));
        $(this).val($(this).val().replace(/-/g, ''));
        $(this).val($(this).val().replace(/ /g, ''));
        $(this).text($(this).val()); //Here I get an unmaked value
    });
}

控制器

string[] indicesValues = form["group"].Split(','); //Here I am getting a masked value
4

2 回答 2

1

这里发布了一个类似的问题:

在 ajax.beginform 的 onbegin 上修改发布的输入值

本质上,您在表单上修改的值并不是浏览器已经序列化的值。

于 2013-01-07T13:10:24.577 回答
0

您正在选择基于“掩码”类来删除掩码,但我没有看到该类的任何控件。您是否错过了有关输入的课程?我相信你的最后一行 javascript 也应该是 .val 而不是 .text。

于 2013-01-07T13:09:25.660 回答