-2
내가 번호 필드 내에서 천 단위 구분 기호와 번호를 저장하기 위해 노력하고있어수천 면도날 MVC와 분리 및 JS
1000 >> 1000
100000 >> 10,000
2000.02 >> 2,000.02
이 문제에 js 및 jquery를 사용하려고합니다. 사용자가 입력 할 때 수천 개의 구분 기호가 표시되도록하고 싶습니다.
<div class="form-group">
<label class="control-label col-md-2" Sum</label>
<div class="col-md-10">
@Html.EditorFor(model => model.Sum, new { htmlAttributes = new { @class = "form-control", @type = "number" } })
@Html.ValidationMessageFor(model => model.Sum, "", new { @class = "text-danger" })
</div>
</div>
어떤 도움?
AutoNumeric의 최신 버전은 어떻게 찾을 수 있습니까? 나는 그것을 찾으려고 노력하고 있지만 나는 할 수 없다. 다른 링크가 있습니까? @teo – askm
이 페이지의 @askm은 ** jQuery-1.7.2 이상과 호환됩니다. ** 그래서 뭐가 문제입니까? –
감사합니다. 작동합니다. – askm