の時に私は私が入力 を変更したときに、私は入力の出力を取り、それを分割し、2 EditorFor変更EditorFor変更入力
<input type="text" value="Set Date" id="reservationtim onchange=myFunction()>
@Html.EditorFor(model => model.StartDate, new { htmlAttributes = new { @class = "form-control" }, id = "startDate" })
@Html.EditorFor(model => model.EndDate, new { htmlAttributes = new { @class = "form-control" } , id = "endDate" })
とで結果を置くデータベースからすでにその表示Editorforデータを変更したいです関数:
<script>
function myFunction() {
var date = document.getElementById("reservationtime").value;
var res = date.split("-");
model => model.StartDate = res[0];
document.getElementById("startDate") = res[0];
document.getElementById("endDate") = res[1];
}
</script>