我的表单上有 datetime-local html 控件,我需要通过 JS 或 jQuery 在其上动态设置日期和时间。我该怎么做?
<input type="datetime-local" id="publishDate" required/>
我试过
$("#publishDate").val("2013-3-18 13:00");
$("#publishDate").val("2013-3-18T13:00");
$("#publishDate").val(new Date().toLocalString());
但没有任何效果。