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