我需要更改日历的日期格式,并在选择日期后使用Javascript / Jquery将其添加到文本字段中。我在下面解释我的代码。
<input name="date" id="start_date" type="text" class="form-control form-group tchkin input_style1" placeholder="select date" value="<?php echo $module->date; ?>" >
var ndate=$('#start_date').val();//12/10/2018(mm/dd/yyyy)
var nwdate= ndate.split("/");
var f = new Date(nwdate[2], nwdate[0] - 1, nwdate[1]);//Mon Dec 10 2018 00:00:00 GMT+0530 (IST)
最初,日期选择器提供的日期格式类似于12/10/2018
,但是在这里,我需要将该日期格式转换为Mon,Dec,10,2018
,然后再次设置该输入字段的value属性。