1
我有以下JS和HTML的X可編輯日期字段。從日曆彈出窗口中選擇日期後,我會在輸入框中看到「Wed Apr 13 2016 20:00:00 GMT-0400(Eastern Standard Time)」作爲新值。而且它不是我已經指定的格式「mm/dd/yyyy」。X-editable日期格式
<input style="background-color: rgb(255, 255, 255);"
title=""
data-original-title=""
class="editable editable-click dateinput form-control"
data-clear="false"
data-format="mm/dd/yyyy"
data-type="date"
id="my_date"
name="my_date"
required="required"
value="12/31/2016"
type="text">
<script>
$("#my_date").editable({
send: 'never',
success: function(response, newValue) {
$('#my_date').val(newValue);
}
});
</script>