我试过了(JSFiddle):
<input type="date" value="2012-3-23"> .
但它不起作用,我如何设置默认值?
我试过了(JSFiddle):
<input type="date" value="2012-3-23"> .
但它不起作用,我如何设置默认值?
当前回答
使用Microsoft Visual Studio
日期分隔符“-”
@{string dateValue = request.Date.ToString("yyyy'-'MM'-'ddTHH: MM:ss");}
<输入类型=给定文件=配对控制name= date1 = @ >
其他回答
一个可能的解决方案:
document.getElementById("yourDatePicker").valueAsDate = new Date();
使用Moment.js:
var today = moment().format('YYYY-MM-DD');
document.getElementById("datePicker").value = today;
使用Microsoft Visual Studio
日期分隔符“-”
@{string dateValue = request.Date.ToString("yyyy'-'MM'-'ddTHH: MM:ss");}
<输入类型=给定文件=配对控制name= date1 = @ >
<input type=“date” id=“myDate” />
然后在js中:
_today: function () {
var myDate = document.querySelector(myDate);
var today = new Date();
myDate.value = today.toISOString().substr(0, 10);
},
你可以这样做:
<input type="date" value="<?php echo date("Y-m-d");?>" name="inicio">
1 - @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
<input type="date" "myDate">
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
var today = new Date();
$('#myDate').val(today.getFullYear() + '-' + ('0' + (today.getMonth() + 1)).slice(-2) + '-' + ('0' + today.getDate()).slice(-2));
2 - @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
<input type="datatime-local" id="myLocalDataTime" step="1">
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
var today = new Date();
$('#myLocalDataTime').val(today.getFullYear() + '-' + ('0' + (today.getMonth() + 1)).slice(-2) + '-' + ('0' + today.getDate()).slice(-2)+'T'+today.getHours()+':'+today.getMinutes());