Как сделать вызов уникальной меткой контента, используя HtmlHelper в asp.net? - PullRequest
0 голосов
/ 06 ноября 2018

// Предположим, это мое поле Address, и как я вызываю его в файле js?

<div class="form-group">
            @Html.LabelFor(model => model.Address, htmlAttributes: new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Address, new { htmlAttributes = new { @class = "form-control" } })
                @Html.ValidationMessageFor(model => model.Address, "", new { @class = "text-danger" })
            </div>
        </div>

// Код JS:

<script>

$('document').ready(function(){
   //how i call address inside JS!
})
</script>
...