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 の最後の行も .text ではなく .val にする必要があると思います。

于 2013-01-07T13:09:25.660 に答える